コード例 #1
0
ファイル: ItemList.php プロジェクト: sneat/php-geckoboard-api
 public function addItem(Title $title, Label $label, $description)
 {
     $count = count($this->items);
     $this->items[$count]['title'] = $title->toArray();
     $this->items[$count]['label'] = $label->toArray();
     $this->items[$count]['description'] = $description;
 }
コード例 #2
0
 public function addItem(Title $title, $label, $description)
 {
     $count = count($this->items);
     $this->items[$count]['title'] = $title->toArray();
     if ($label instanceof Label) {
         $this->items[$count]['label'] = $label->toArray();
     }
     $this->items[$count]['description'] = $description;
 }