/**
  * Retrieve a user by their unique identifier.
  *
  * @param  mixed  $identifier
  * @return \Illuminate\Contracts\Auth\Authenticatable|null
  */
 public function retrieveById($identifier)
 {
     return $this->query->findPK($identifier);
 }