From 56a29501ce0fc8bc92c59dd87d9c8f6093c9bbed Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 3 Dec 2016 23:03:17 +0100 Subject: [PATCH] Typehint fix --- Views/ViewAbstract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index 3d32a8558..c572cc0e1 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -184,7 +184,7 @@ abstract class ViewAbstract implements \Serializable * @since 1.0.0 * @author Dennis Eichhorn */ - public function addView(string $id, View $view, int $order = 0, bool $overwrite = true) + public function addView(string $id, View $view, int $order = 0, bool $overwrite = true) /* : void */ { if ($overwrite || !isset($this->views[$id])) { $this->views[$id] = $view;