Method getEmail()

This commit is contained in:
Dmitry Kuznetsov
2017-09-21 15:54:20 +03:00
committed by GitHub
parent 45e7e2cc06
commit 2781e20684

View File

@@ -174,4 +174,13 @@ class User implements ResourceOwnerInterface
{ {
return $this->getField('sex'); return $this->getField('sex');
} }
/**
* @return string
*/
public function getEmail()
{
return $this->getField('email');
}
} }