getPersistableKey() public method

{@inheritDoc}
public getPersistableKey ( )
Example #1
0
 public function testSetAndGetPersistableKey()
 {
     $user = new EloquentUser();
     $user->setPersistableKey('foo_id');
     $this->assertEquals('foo_id', $user->getPersistableKey());
 }