getByEmail() 공개 메소드

Get a user by email.
public getByEmail ( string $email ) : Illuminate\Database\Eloquent\Model
$email string
리턴 Illuminate\Database\Eloquent\Model
예제 #1
0
파일: UserService.php 프로젝트: so1/owl
 /**
  * Get a user by email.
  *
  * @param string  $email
  * @return \stdclass
  */
 public function getByEmail($email)
 {
     return $this->userRepo->getByEmail($email);
 }