@@ -67,7 +67,7 @@ |
||
| 67 | 67 | $view = $view($uri, $engine); |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - if (! $view instanceof ViewInterface) { |
|
| 70 | + if ( ! $view instanceof ViewInterface) { |
|
| 71 | 71 | throw new FailedToInstantiateViewException( |
| 72 | 72 | sprintf( |
| 73 | 73 | _('Could not instantiate view "%s".'), |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | $engine = $engine(); |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - if (! $engine instanceof EngineInterface) { |
|
| 88 | + if ( ! $engine instanceof EngineInterface) { |
|
| 89 | 89 | throw new FailedToInstantiateEngineException( |
| 90 | 90 | sprintf( |
| 91 | 91 | _('Could not instantiate engine "%s".'), |
@@ -146,7 +146,7 @@ |
||
| 146 | 146 | */ |
| 147 | 147 | protected function initializeNullObject() |
| 148 | 148 | { |
| 149 | - if (! is_object($this->nullObject)) { |
|
| 149 | + if ( ! is_object($this->nullObject)) { |
|
| 150 | 150 | $this->nullObject = new $this->nullObject(); |
| 151 | 151 | } |
| 152 | 152 | } |