From 36e7c7b59233aa8b2bf0a275ce0f1ce1fafdd085 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 13 Feb 2020 18:54:21 +0100 Subject: [PATCH] typehint fixes --- Theme/Backend/department-list.tpl.php | 2 +- Theme/Backend/position-list.tpl.php | 2 +- Theme/Backend/unit-list.tpl.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Theme/Backend/department-list.tpl.php b/Theme/Backend/department-list.tpl.php index 6bb7f5e..bd0652b 100644 --- a/Theme/Backend/department-list.tpl.php +++ b/Theme/Backend/department-list.tpl.php @@ -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') ?? []; diff --git a/Theme/Backend/position-list.tpl.php b/Theme/Backend/position-list.tpl.php index 0b06707..a4f44b3 100644 --- a/Theme/Backend/position-list.tpl.php +++ b/Theme/Backend/position-list.tpl.php @@ -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') ?? []; diff --git a/Theme/Backend/unit-list.tpl.php b/Theme/Backend/unit-list.tpl.php index 9b66773..cc5e031 100644 --- a/Theme/Backend/unit-list.tpl.php +++ b/Theme/Backend/unit-list.tpl.php @@ -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') ?? [];