@@ -315,7 +315,7 @@ discard block |
||
| 315 | 315 | { |
| 316 | 316 | $codingStandardPackages = array_filter( |
| 317 | 317 | $this->composer->getRepositoryManager()->getLocalRepository()->getPackages(), |
| 318 | - function (PackageInterface $package) { |
|
| 318 | + function(PackageInterface $package) { |
|
| 319 | 319 | if ($package instanceof AliasPackage) { |
| 320 | 320 | return false; |
| 321 | 321 | } |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | |
| 393 | 393 | // Some compatibility fixes for Windows paths |
| 394 | 394 | $from = is_dir($from) ? rtrim($from, '\/') . '/' : $from; |
| 395 | - $to = is_dir($to) ? rtrim($to, '\/') . '/' : $to; |
|
| 395 | + $to = is_dir($to) ? rtrim($to, '\/') . '/' : $to; |
|
| 396 | 396 | $from = str_replace('\\', '/', $from); |
| 397 | 397 | $to = str_replace('\\', '/', $to); |
| 398 | 398 | |