Beispiel #1
0
 protected function _getOnStartSuccessMessage(Collection $collection)
 {
     return "started todoList collection. found " . $collection->count() . " todoLists";
 }
Beispiel #2
0
 public function getTodoListsInstance()
 {
     $todoLists = new TodoListCollection();
     $todoLists->setService($this)->setHttpClient($this->_getHttpClient());
     return $todoLists;
 }