コード例 #1
0
ファイル: abstract.php プロジェクト: nooku/nooku-framework
 /**
  * Returns the number of elements in the collection.
  *
  * Required by the Countable interface
  *
  * @return int
  */
 public function count()
 {
     return $this->__rowset->count();
 }
コード例 #2
0
ファイル: composite.php プロジェクト: nooku/nooku-framework
 /**
  * Returns the number of elements in the collection.
  *
  * Required by the Countable interface
  *
  * @return int
  */
 public function count()
 {
     return $this->__entities->count();
 }