make type hints easier to read

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

View File

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

View File

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