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