/**
  * Like find() but returns only the first match as a Page object (not PageArray)
  *
  * This is an alias of the findOne() method for syntactic convenience and consistency.
  *
  * @param string $selectorString
  * @return Page|null
  */
 public function get($selectorString)
 {
     $user = parent::get($selectorString);
     return $user;
 }