make type hints easier to read

This commit is contained in:
Dennis Eichhorn 2020-06-08 22:43:28 +02:00
parent a40bcc3dac
commit 849c2a13d7
2 changed files with 2 additions and 6 deletions

View File

@ -12,9 +12,7 @@
*/
declare(strict_types=1);
/**
* @var \phpOMS\Views\View $this
*/
/** @var \phpOMS\Views\View $this */
echo $this->getData('nav')->render(); ?>
<section class="box w-50 floatLeft">

View File

@ -12,7 +12,5 @@
*/
declare(strict_types=1);
/**
* @var \phpOMS\Views\View $this
*/
/** @var \phpOMS\Views\View $this */
echo $this->getData('nav')->render();