getLoginNames() public method

Returns an array of login column names.
public getLoginNames ( ) : array
return array
Example #1
0
 public function testGetLoginNames()
 {
     $user = new EloquentUser();
     $this->assertEquals(['email'], $user->getLoginNames());
 }