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