first() публичный Метод

Return the first entity matched by the query
public first ( ) : mixed
Результат mixed Spot_Entity on success, boolean false on failure
Пример #1
0
 /**
  * Get the relation entity
  * @return \Spot\Entity\EntityInterface
  */
 public function entity()
 {
     if (null === $this->entity) {
         $this->entity = $this->execute();
         if ($this->entity instanceof Query) {
             $this->entity = $this->entity->first();
         } else {
             if ($this->entity instanceof ResultsetInterface) {
                 $this->entity = $this->entity->first();
             }
         }
     }
     return $this->entity;
 }