Passed
Push — scrutinizer ( 30af4f...f358b5 )
by Luke
02:35
created
lib/ComponentManager/Component.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      * @param ComponentVersion[]     $versions
66 66
      * @param PackageRepository|null $packageRepository
67 67
      */
68
-    public function __construct($name, $versions, $packageRepository=null) {
68
+    public function __construct($name, $versions, $packageRepository = null) {
69 69
         $this->name     = $name;
70 70
         $this->versions = $versions;
71 71
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      * @return string
127 127
      */
128 128
     public function getPluginType() {
129
-        list($type, ) = $this->getNameParts();
129
+        list($type,) = $this->getNameParts();
130 130
 
131 131
         return $type;
132 132
     }
Please login to merge, or discard this patch.
lib/ComponentManager/ComponentVersion.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      * @param integer                $maturity
85 85
      * @param ComponentSource[]|null $sources
86 86
      */
87
-    public function __construct($version, $release, $maturity, $sources=null) {
87
+    public function __construct($version, $release, $maturity, $sources = null) {
88 88
         $this->version  = $version;
89 89
         $this->release  = $release;
90 90
         $this->maturity = $maturity;
Please login to merge, or discard this patch.