diff --git a/Theme/Backend/task-analysis.tpl.php b/Theme/Backend/task-analysis.tpl.php index ef272c8..39b86ad 100644 --- a/Theme/Backend/task-analysis.tpl.php +++ b/Theme/Backend/task-analysis.tpl.php @@ -12,9 +12,7 @@ */ declare(strict_types=1); -/** - * @var \phpOMS\Views\View $this - */ +/** @var \phpOMS\Views\View $this */ echo $this->getData('nav')->render(); ?>
diff --git a/Theme/Backend/task-create.tpl.php b/Theme/Backend/task-create.tpl.php index eda6aa3..e098e4d 100644 --- a/Theme/Backend/task-create.tpl.php +++ b/Theme/Backend/task-create.tpl.php @@ -15,9 +15,7 @@ declare(strict_types=1); use \Modules\Tasks\Models\TaskPriority; use \Modules\Tasks\Models\TaskType; -/** - * @var \phpOMS\Views\View $this - */ +/** @var \phpOMS\Views\View $this */ echo $this->getData('nav')->render(); ?>
diff --git a/Theme/Backend/task-dashboard.tpl.php b/Theme/Backend/task-dashboard.tpl.php index 3cb8be6..d5e065c 100644 --- a/Theme/Backend/task-dashboard.tpl.php +++ b/Theme/Backend/task-dashboard.tpl.php @@ -23,10 +23,8 @@ use phpOMS\Uri\UriFactory; * It could also make sense to implement checkboxes infront of the list items which then show a close/done etc. button which can be pressed and changes the status of all of the checked tasks. */ - /** - * @var \phpOMS\Views\View $this - * @var \Modules\Tasks\Models\Task[] $tasks - */ +/** @var \phpOMS\Views\View $this */ +/** @var \Modules\Tasks\Models\Task[] $tasks */ $tasks = $this->getData('tasks') ?? []; $previous = empty($tasks) ? '{/prefix}task/dashboard' : '{/prefix}task/dashboard?{?}&id=' . \reset($tasks)->getId() . '&ptype=-'; diff --git a/Theme/Backend/task-single.tpl.php b/Theme/Backend/task-single.tpl.php index 5ecc4a1..830dcc8 100644 --- a/Theme/Backend/task-single.tpl.php +++ b/Theme/Backend/task-single.tpl.php @@ -17,10 +17,8 @@ use \Modules\Tasks\Models\GroupRelation; use \Modules\Tasks\Models\TaskPriority; use \Modules\Tasks\Models\TaskStatus; -/** - * @var \Modules\Tasks\Views\TaskView $this - * @var \Modules\Tasks\Models\Task $task - */ +/** @var \Modules\Tasks\Views\TaskView $this */ +/** @var \Modules\Tasks\Models\Task $task */ $task = $this->getData('task'); $taskMedia = $task->getMedia(); $elements = $task->getTaskElements();