typehint fixes

This commit is contained in:
Dennis Eichhorn 2020-02-13 18:54:21 +01:00
parent 291d29f059
commit 36e7c7b592
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
declare(strict_types=1);
/**
* @var \phpOMS\Views\View $this
* @var \phpOMS\Views\View $this
* @var \Modules\Organization\Models\Department[] $departments
*/
$departments = $this->getData('list:elements') ?? [];

View File

@ -13,7 +13,7 @@
declare(strict_types=1);
/**
* @var \phpOMS\Views\View $this
* @var \phpOMS\Views\View $this
* @var \Modules\Organization\Models\Position[] $positions
*/
$positions = $this->getData('list:elements') ?? [];

View File

@ -13,7 +13,7 @@
declare(strict_types=1);
/**
* @var \phpOMS\Views\View $this
* @var \phpOMS\Views\View $this
* @var \Modules\Organization\Models\Unit[] $units
*/
$units = $this->getData('list:elements') ?? [];