Example #1
0
 /**
  * @param Webforge\Trello\Entities\Board $board
  */
 public function setBoard(Board $board)
 {
     if (isset($this->board) && $this->board !== $board) {
         $this->board->removeCard($this);
     }
     $this->board = $board;
     $board->addCard($this);
     return $this;
 }