@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | |
11 | 11 | public function __construct(Application $app) |
12 | 12 | { |
13 | - self::$app = $app; |
|
13 | + self::$app = $app; |
|
14 | 14 | |
15 | 15 | $this->defineErrorHandler(); |
16 | 16 | $this->defineExceptionHandler(); |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | protected static function getApp() |
60 | 60 | { |
61 | - if(is_null(self::$app)) { |
|
61 | + if (is_null(self::$app)) { |
|
62 | 62 | self::$app = Application::getInstance(); |
63 | 63 | } |
64 | 64 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | protected static function defineRenderToUse($renderConfig) |
87 | 87 | { |
88 | - if($renderConfig['active'] === false) { |
|
88 | + if ($renderConfig['active'] === false) { |
|
89 | 89 | return false; |
90 | 90 | } |
91 | 91 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | return $renderConfig['cli']; |
94 | 94 | } |
95 | 95 | |
96 | - if(isset($renderConfig['default'])) { |
|
96 | + if (isset($renderConfig['default'])) { |
|
97 | 97 | return $renderConfig['default']; |
98 | 98 | } |
99 | 99 |