getLastUpdateTime() public method

Get the date when user last updated his profile on the OAuth2 server.
public getLastUpdateTime ( ) : integer
return integer Timestamp in milliseconds.
Example #1
0
 /**
  * @param OAuth2User $u
  *
  * @dataProvider dataProvider
  */
 public function testSetGetLastUpdateTime($u)
 {
     $time = time();
     $u->setLastUpdateTime($time);
     $this->assertSame($time, $u->getLastUpdateTime());
     $this->assertSame($time, $u->lastUpdated);
 }