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