@@ -127,18 +127,18 @@ |
||
127 | 127 | private function determineDriver($file) |
128 | 128 | { |
129 | 129 | $exception = new InvalidArgumentException( |
130 | - "Cannot initialize the configuration driver. I could not determine " . |
|
130 | + "Cannot initialize the configuration driver. I could not determine ". |
|
131 | 131 | "the correct driver class." |
132 | 132 | ); |
133 | 133 | |
134 | - if (is_null($file) || ! is_string($file)) { |
|
134 | + if (is_null($file) || !is_string($file)) { |
|
135 | 135 | throw $exception; |
136 | 136 | } |
137 | 137 | |
138 | 138 | $nameDivision = explode('.', $file); |
139 | 139 | $extension = strtolower(end($nameDivision)); |
140 | 140 | |
141 | - if (! array_key_exists($extension, $this->extensionToDriver)) { |
|
141 | + if (!array_key_exists($extension, $this->extensionToDriver)) { |
|
142 | 142 | throw $exception; |
143 | 143 | } |
144 | 144 |