コード例 #1
0
ファイル: Team.php プロジェクト: rogerthomas84/litmos-php
 /**
  * @param Team $team
  * @return void
  */
 private function _copy(Team $team)
 {
     $this->id = $team->getId();
     $this->name = $team->getName();
     $this->description = $team->getDescription();
 }
コード例 #2
0
ファイル: Teams.php プロジェクト: rogerthomas84/litmos-php
 /**
  * @param Team $team
  */
 public function update(Team $team)
 {
     $xml = $team->toXml();
     $this->service->put("/teams/{$team->getId()}", $xml);
 }