Completed
Push — master ( 371a2f...3cc580 )
by Martin
02:41
created
src/Installer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
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
         
Please login to merge, or discard this patch.
src/Package.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
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
     
Please login to merge, or discard this patch.