コード例 #1
0
ファイル: LazyCollection.php プロジェクト: free2er/yam
 /**
  * Возвращает количество элементов
  *
  * @return int
  */
 public function count() : int
 {
     if ($this->count === null) {
         $this->count = $this->loader->fetchCount($this->specification);
     }
     return $this->count;
 }