Example #1
0
 protected function _getOnStartSuccessMessage(Collection $collection)
 {
     return "started todo-item collection. found " . $collection->count() . " todo-items";
 }
Example #2
0
 public function getTodoItemsInstance()
 {
     $todoListitems = new TodoItemCollection();
     $todoListitems->setService($this)->setHttpClient($this->_getHttpClient());
     return $todoListitems;
 }