Passed
Push — master ( a16703...c6645c )
by John
17:09 queued 13s
created
apps/user_ldap/composer/composer/InstalledVersions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
apps/files/composer/composer/InstalledVersions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
apps/systemtags/composer/composer/InstalledVersions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
apps/user_status/composer/composer/InstalledVersions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
apps/federatedfilesharing/composer/composer/InstalledVersions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
apps/provisioning_api/composer/composer/InstalledVersions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
apps/oauth2/composer/composer/InstalledVersions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
apps/files_trashbin/composer/composer/InstalledVersions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
apps/admin_audit/composer/composer/InstalledVersions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.