| 1 | <?php |
||
| 21 | class Planner |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var Table |
||
| 25 | */ |
||
| 26 | private $table; |
||
| 27 | |||
| 28 | private $template; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Planner constructor. |
||
| 32 | * |
||
| 33 | * @param OutputInterface $output |
||
| 34 | * @param Host[] $hosts |
||
| 35 | */ |
||
| 36 | public function __construct(OutputInterface $output, $hosts) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param Host[] $hosts |
||
| 51 | * @param Task $task |
||
| 52 | */ |
||
| 53 | public function commit(array $hosts, Task $task) |
||
| 68 | |||
| 69 | public function render() |
||
| 73 | } |
||
| 74 |