| 1 | <?php |
||
| 11 | class BoardManager |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var \Trello\Client |
||
| 15 | */ |
||
| 16 | protected $client; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * BoardManager constructor. |
||
| 20 | * |
||
| 21 | * @param TrelloClient $trelloClient |
||
| 22 | */ |
||
| 23 | 15 | public function __construct(TrelloClient $trelloClient) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * Return in instance of Board get from the board name. |
||
| 30 | * |
||
| 31 | * @param string $boardName |
||
| 32 | * |
||
| 33 | * @return \Trello\Model\Board|null |
||
| 34 | */ |
||
| 35 | 13 | public function getBoard(String $boardName) |
|
| 51 | } |
||
| 52 |