Update kanban-board.tpl.php

This commit is contained in:
Dennis Eichhorn 2021-06-18 14:55:03 +02:00 committed by GitHub
parent 084a09d542
commit 0fabbed286
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,11 @@
<?php declare(strict_types=1);
$board = $this->getData('board');
<?php
declare(strict_types=1);
/** @var \Modules\Kanban\Models\KanbanBoard $board */
$board = $this->getData('board');
/** @var \Modules\Kanban\Models\KanbanColumn[] $columns */
$columns = $board->getColumns();
?>
<!--
@ -32,4 +38,4 @@ $columns = $board->getColumns();
<?php endforeach; ?>
</div>
<?php endforeach; ?>
</div>
</div>