@@ -69,7 +69,7 @@ |
||
69 | 69 | $locker = $composer->getLocker(); |
70 | 70 | |
71 | 71 | $lockData = $locker->getLockData(); |
72 | - if (! array_key_exists('packages-dev', $lockData)) { |
|
72 | + if (!array_key_exists('packages-dev', $lockData)) { |
|
73 | 73 | $lockData['packages-dev'] = []; |
74 | 74 | } |
75 | 75 |
@@ -27,8 +27,8 @@ |
||
27 | 27 | { |
28 | 28 | $this->name = $name; |
29 | 29 | |
30 | - if (! $this->isInstalled($name)) { |
|
31 | - throw new PackageNotInstalledException('Package "'.$name.'" is not installed through composer, or you installed it with the flag --no-scripts'); |
|
30 | + if (!$this->isInstalled($name)) { |
|
31 | + throw new PackageNotInstalledException('Package "' . $name . '" is not installed through composer, or you installed it with the flag --no-scripts'); |
|
32 | 32 | } |
33 | 33 | } |
34 | 34 |