From b6a427eaa4dab7767d09f7c48697e3d8ce7a7f2a Mon Sep 17 00:00:00 2001 From: flashwave Date: Wed, 25 Apr 2018 01:00:13 +0200 Subject: [PATCH] Satisfy StyleCI. --- src/Application.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Application.php b/src/Application.php index e295c6ce..6545821f 100644 --- a/src/Application.php +++ b/src/Application.php @@ -71,7 +71,7 @@ class Application extends ApplicationBase */ public function getConfig(): ConfigManager { - if (is_null($this->configInstance)){ + if (is_null($this->configInstance)) { throw new UnexpectedValueException('Internal ConfigManager instance is null, how did you even manage to do this?'); } @@ -275,7 +275,7 @@ class Application extends ApplicationBase */ public function getTemplating(): TemplateEngine { - if (is_null($this->templatingInstance)){ + if (is_null($this->templatingInstance)) { throw new UnexpectedValueException('Internal templating engine instance is null, did you run startDatabase yet?'); }