コード例 #1
0
ファイル: Abstrakt.php プロジェクト: philip-dakno/basecamp
 protected function _getOnStartSuccessMessage(Collection $collection)
 {
     return "started person collection. found " . $collection->count() . " persons";
 }
コード例 #2
0
ファイル: Service.php プロジェクト: philip-dakno/basecamp
 public function getPersonsInstance()
 {
     $persons = new PersonCollection();
     $persons->setService($this)->setHttpClient($this->_getHttpClient());
     return $persons;
 }