Completed
Pull Request — master (#4)
by Tim
02:29
created
RoboFile.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
     {
60 60
         // optimize autoloader with custom path
61 61
         $this->taskComposerInstall()
62
-             ->preferDist()
63
-             ->optimizeAutoloader()
64
-             ->run();
62
+                ->preferDist()
63
+                ->optimizeAutoloader()
64
+                ->run();
65 65
     }
66 66
 
67 67
     /**
@@ -73,9 +73,9 @@  discard block
 block discarded – undo
73 73
     {
74 74
         // optimize autoloader with custom path
75 75
         $this->taskComposerUpdate()
76
-             ->preferDist()
77
-             ->optimizeAutoloader()
78
-             ->run();
76
+                ->preferDist()
77
+                ->optimizeAutoloader()
78
+                ->run();
79 79
     }
80 80
 
81 81
     /**
@@ -96,10 +96,10 @@  discard block
 block discarded – undo
96 96
     public function prepare()
97 97
     {
98 98
         $this->taskFileSystemStack()
99
-             ->mkdir($this->properties['dist.dir'])
100
-             ->mkdir($this->properties['target.dir'])
101
-             ->mkdir(sprintf('%s/reports', $this->properties['target.dir']))
102
-             ->run();
99
+                ->mkdir($this->properties['dist.dir'])
100
+                ->mkdir($this->properties['target.dir'])
101
+                ->mkdir(sprintf('%s/reports', $this->properties['target.dir']))
102
+                ->run();
103 103
     }
104 104
 
105 105
     /**
@@ -169,8 +169,8 @@  discard block
 block discarded – undo
169 169
 
170 170
         // run PHPUnit
171 171
         $this->taskPHPUnit(sprintf('%s/bin/phpunit', $this->properties['vendor.dir']))
172
-             ->configFile('phpunit.xml')
173
-             ->run();
172
+                ->configFile('phpunit.xml')
173
+                ->run();
174 174
     }
175 175
 
176 176
     /**
Please login to merge, or discard this patch.
src/Subjects/BunchSubject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
         $attribute = $this->loadAttributeByAttributeCode($attributeCode);
117 117
 
118 118
         // temporary persist the pre-loaded attribute code => ID mapping
119
-        $this->preLoadedAttributeIds[$attributeCode]= $attribute[MemberNames::ATTRIBUTE_ID];
119
+        $this->preLoadedAttributeIds[$attributeCode] = $attribute[MemberNames::ATTRIBUTE_ID];
120 120
     }
121 121
 
122 122
     /**
Please login to merge, or discard this patch.
src/Observers/AttributeOptionValueObserver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
      *
143 143
      * @param array $attributeOptionValue The attribute option value to persist
144 144
      *
145
-     * @return void
145
+     * @return string
146 146
      */
147 147
     protected function persistAttributeOptionValue(array $attributeOptionValue)
148 148
     {
Please login to merge, or discard this patch.