@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | return implode(' || ', $ranges); |
157 | 157 | } |
158 | 158 | |
159 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
159 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $installed['versions'][$packageName]['version']; |
178 | 178 | } |
179 | 179 | |
180 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
180 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | return $installed['versions'][$packageName]['pretty_version']; |
199 | 199 | } |
200 | 200 | |
201 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
201 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | return $installed['versions'][$packageName]['reference']; |
220 | 220 | } |
221 | 221 | |
222 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
222 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
237 | 237 | } |
238 | 238 | |
239 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
239 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | // only require the installed.php file if this file is loaded from its dumped location, |
266 | 266 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
267 | 267 | if (substr(__DIR__, -8, 1) !== 'C') { |
268 | - self::$installed = include __DIR__ . '/installed.php'; |
|
268 | + self::$installed = include __DIR__.'/installed.php'; |
|
269 | 269 | } else { |
270 | 270 | self::$installed = array(); |
271 | 271 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | // only require the installed.php file if this file is loaded from its dumped location, |
339 | 339 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
340 | 340 | if (substr(__DIR__, -8, 1) !== 'C') { |
341 | - self::$installed = require __DIR__ . '/installed.php'; |
|
341 | + self::$installed = require __DIR__.'/installed.php'; |
|
342 | 342 | } else { |
343 | 343 | self::$installed = array(); |
344 | 344 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | return implode(' || ', $ranges); |
157 | 157 | } |
158 | 158 | |
159 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
159 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $installed['versions'][$packageName]['version']; |
178 | 178 | } |
179 | 179 | |
180 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
180 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | return $installed['versions'][$packageName]['pretty_version']; |
199 | 199 | } |
200 | 200 | |
201 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
201 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | return $installed['versions'][$packageName]['reference']; |
220 | 220 | } |
221 | 221 | |
222 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
222 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
237 | 237 | } |
238 | 238 | |
239 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
239 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | // only require the installed.php file if this file is loaded from its dumped location, |
266 | 266 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
267 | 267 | if (substr(__DIR__, -8, 1) !== 'C') { |
268 | - self::$installed = include __DIR__ . '/installed.php'; |
|
268 | + self::$installed = include __DIR__.'/installed.php'; |
|
269 | 269 | } else { |
270 | 270 | self::$installed = array(); |
271 | 271 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | // only require the installed.php file if this file is loaded from its dumped location, |
339 | 339 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
340 | 340 | if (substr(__DIR__, -8, 1) !== 'C') { |
341 | - self::$installed = require __DIR__ . '/installed.php'; |
|
341 | + self::$installed = require __DIR__.'/installed.php'; |
|
342 | 342 | } else { |
343 | 343 | self::$installed = array(); |
344 | 344 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | return implode(' || ', $ranges); |
157 | 157 | } |
158 | 158 | |
159 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
159 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $installed['versions'][$packageName]['version']; |
178 | 178 | } |
179 | 179 | |
180 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
180 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | return $installed['versions'][$packageName]['pretty_version']; |
199 | 199 | } |
200 | 200 | |
201 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
201 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | return $installed['versions'][$packageName]['reference']; |
220 | 220 | } |
221 | 221 | |
222 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
222 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
237 | 237 | } |
238 | 238 | |
239 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
239 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | // only require the installed.php file if this file is loaded from its dumped location, |
266 | 266 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
267 | 267 | if (substr(__DIR__, -8, 1) !== 'C') { |
268 | - self::$installed = include __DIR__ . '/installed.php'; |
|
268 | + self::$installed = include __DIR__.'/installed.php'; |
|
269 | 269 | } else { |
270 | 270 | self::$installed = array(); |
271 | 271 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | // only require the installed.php file if this file is loaded from its dumped location, |
339 | 339 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
340 | 340 | if (substr(__DIR__, -8, 1) !== 'C') { |
341 | - self::$installed = require __DIR__ . '/installed.php'; |
|
341 | + self::$installed = require __DIR__.'/installed.php'; |
|
342 | 342 | } else { |
343 | 343 | self::$installed = array(); |
344 | 344 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | return implode(' || ', $ranges); |
157 | 157 | } |
158 | 158 | |
159 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
159 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $installed['versions'][$packageName]['version']; |
178 | 178 | } |
179 | 179 | |
180 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
180 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | return $installed['versions'][$packageName]['pretty_version']; |
199 | 199 | } |
200 | 200 | |
201 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
201 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | return $installed['versions'][$packageName]['reference']; |
220 | 220 | } |
221 | 221 | |
222 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
222 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
237 | 237 | } |
238 | 238 | |
239 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
239 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | // only require the installed.php file if this file is loaded from its dumped location, |
266 | 266 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
267 | 267 | if (substr(__DIR__, -8, 1) !== 'C') { |
268 | - self::$installed = include __DIR__ . '/installed.php'; |
|
268 | + self::$installed = include __DIR__.'/installed.php'; |
|
269 | 269 | } else { |
270 | 270 | self::$installed = array(); |
271 | 271 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | // only require the installed.php file if this file is loaded from its dumped location, |
339 | 339 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
340 | 340 | if (substr(__DIR__, -8, 1) !== 'C') { |
341 | - self::$installed = require __DIR__ . '/installed.php'; |
|
341 | + self::$installed = require __DIR__.'/installed.php'; |
|
342 | 342 | } else { |
343 | 343 | self::$installed = array(); |
344 | 344 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | return implode(' || ', $ranges); |
157 | 157 | } |
158 | 158 | |
159 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
159 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $installed['versions'][$packageName]['version']; |
178 | 178 | } |
179 | 179 | |
180 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
180 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | return $installed['versions'][$packageName]['pretty_version']; |
199 | 199 | } |
200 | 200 | |
201 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
201 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | return $installed['versions'][$packageName]['reference']; |
220 | 220 | } |
221 | 221 | |
222 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
222 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
237 | 237 | } |
238 | 238 | |
239 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
239 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | // only require the installed.php file if this file is loaded from its dumped location, |
266 | 266 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
267 | 267 | if (substr(__DIR__, -8, 1) !== 'C') { |
268 | - self::$installed = include __DIR__ . '/installed.php'; |
|
268 | + self::$installed = include __DIR__.'/installed.php'; |
|
269 | 269 | } else { |
270 | 270 | self::$installed = array(); |
271 | 271 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | // only require the installed.php file if this file is loaded from its dumped location, |
339 | 339 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
340 | 340 | if (substr(__DIR__, -8, 1) !== 'C') { |
341 | - self::$installed = require __DIR__ . '/installed.php'; |
|
341 | + self::$installed = require __DIR__.'/installed.php'; |
|
342 | 342 | } else { |
343 | 343 | self::$installed = array(); |
344 | 344 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | return implode(' || ', $ranges); |
157 | 157 | } |
158 | 158 | |
159 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
159 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $installed['versions'][$packageName]['version']; |
178 | 178 | } |
179 | 179 | |
180 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
180 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | return $installed['versions'][$packageName]['pretty_version']; |
199 | 199 | } |
200 | 200 | |
201 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
201 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | return $installed['versions'][$packageName]['reference']; |
220 | 220 | } |
221 | 221 | |
222 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
222 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
237 | 237 | } |
238 | 238 | |
239 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
239 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | // only require the installed.php file if this file is loaded from its dumped location, |
266 | 266 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
267 | 267 | if (substr(__DIR__, -8, 1) !== 'C') { |
268 | - self::$installed = include __DIR__ . '/installed.php'; |
|
268 | + self::$installed = include __DIR__.'/installed.php'; |
|
269 | 269 | } else { |
270 | 270 | self::$installed = array(); |
271 | 271 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | // only require the installed.php file if this file is loaded from its dumped location, |
339 | 339 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
340 | 340 | if (substr(__DIR__, -8, 1) !== 'C') { |
341 | - self::$installed = require __DIR__ . '/installed.php'; |
|
341 | + self::$installed = require __DIR__.'/installed.php'; |
|
342 | 342 | } else { |
343 | 343 | self::$installed = array(); |
344 | 344 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | return implode(' || ', $ranges); |
157 | 157 | } |
158 | 158 | |
159 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
159 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $installed['versions'][$packageName]['version']; |
178 | 178 | } |
179 | 179 | |
180 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
180 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | return $installed['versions'][$packageName]['pretty_version']; |
199 | 199 | } |
200 | 200 | |
201 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
201 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | return $installed['versions'][$packageName]['reference']; |
220 | 220 | } |
221 | 221 | |
222 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
222 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
237 | 237 | } |
238 | 238 | |
239 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
239 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | // only require the installed.php file if this file is loaded from its dumped location, |
266 | 266 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
267 | 267 | if (substr(__DIR__, -8, 1) !== 'C') { |
268 | - self::$installed = include __DIR__ . '/installed.php'; |
|
268 | + self::$installed = include __DIR__.'/installed.php'; |
|
269 | 269 | } else { |
270 | 270 | self::$installed = array(); |
271 | 271 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | // only require the installed.php file if this file is loaded from its dumped location, |
339 | 339 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
340 | 340 | if (substr(__DIR__, -8, 1) !== 'C') { |
341 | - self::$installed = require __DIR__ . '/installed.php'; |
|
341 | + self::$installed = require __DIR__.'/installed.php'; |
|
342 | 342 | } else { |
343 | 343 | self::$installed = array(); |
344 | 344 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | return implode(' || ', $ranges); |
157 | 157 | } |
158 | 158 | |
159 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
159 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $installed['versions'][$packageName]['version']; |
178 | 178 | } |
179 | 179 | |
180 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
180 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | return $installed['versions'][$packageName]['pretty_version']; |
199 | 199 | } |
200 | 200 | |
201 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
201 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | return $installed['versions'][$packageName]['reference']; |
220 | 220 | } |
221 | 221 | |
222 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
222 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
237 | 237 | } |
238 | 238 | |
239 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
239 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | // only require the installed.php file if this file is loaded from its dumped location, |
266 | 266 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
267 | 267 | if (substr(__DIR__, -8, 1) !== 'C') { |
268 | - self::$installed = include __DIR__ . '/installed.php'; |
|
268 | + self::$installed = include __DIR__.'/installed.php'; |
|
269 | 269 | } else { |
270 | 270 | self::$installed = array(); |
271 | 271 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | // only require the installed.php file if this file is loaded from its dumped location, |
339 | 339 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
340 | 340 | if (substr(__DIR__, -8, 1) !== 'C') { |
341 | - self::$installed = require __DIR__ . '/installed.php'; |
|
341 | + self::$installed = require __DIR__.'/installed.php'; |
|
342 | 342 | } else { |
343 | 343 | self::$installed = array(); |
344 | 344 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | return implode(' || ', $ranges); |
157 | 157 | } |
158 | 158 | |
159 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
159 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $installed['versions'][$packageName]['version']; |
178 | 178 | } |
179 | 179 | |
180 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
180 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | return $installed['versions'][$packageName]['pretty_version']; |
199 | 199 | } |
200 | 200 | |
201 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
201 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | return $installed['versions'][$packageName]['reference']; |
220 | 220 | } |
221 | 221 | |
222 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
222 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
237 | 237 | } |
238 | 238 | |
239 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
239 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | // only require the installed.php file if this file is loaded from its dumped location, |
266 | 266 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
267 | 267 | if (substr(__DIR__, -8, 1) !== 'C') { |
268 | - self::$installed = include __DIR__ . '/installed.php'; |
|
268 | + self::$installed = include __DIR__.'/installed.php'; |
|
269 | 269 | } else { |
270 | 270 | self::$installed = array(); |
271 | 271 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | // only require the installed.php file if this file is loaded from its dumped location, |
339 | 339 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
340 | 340 | if (substr(__DIR__, -8, 1) !== 'C') { |
341 | - self::$installed = require __DIR__ . '/installed.php'; |
|
341 | + self::$installed = require __DIR__.'/installed.php'; |
|
342 | 342 | } else { |
343 | 343 | self::$installed = array(); |
344 | 344 | } |