Пример #1
0
 /**
  * @return User[]
  */
 public function getLittleBrothers() : array
 {
     if (!$this->_littles) {
         $this->_littles = User::findAllWithBigBrother($this->_pdo, $this->id);
     }
     return $this->_littles;
 }