Completed
Pull Request — master (#906)
by Viktor
02:19
created
src/Task/Assets/loadTasks.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,11 +23,11 @@
 block discarded – undo
23 23
         return $this->task(ImageMinify::class, $input);
24 24
     }
25 25
 
26
-   /**
27
-    * @param array $input
28
-    *
29
-    * @return \Robo\Task\Assets\Less|\Robo\Collection\CollectionBuilder
30
-    */
26
+    /**
27
+     * @param array $input
28
+     *
29
+     * @return \Robo\Task\Assets\Less|\Robo\Collection\CollectionBuilder
30
+     */
31 31
     protected function taskLess($input)
32 32
     {
33 33
         return $this->task(Less::class, $input);
Please login to merge, or discard this patch.
src/Collection/CollectionBuilder.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -168,16 +168,16 @@
 block discarded – undo
168 168
         return $this;
169 169
     }
170 170
 
171
-  /**
172
-   * Add arbitrary code to execute as a task.
173
-   *
174
-   * @see \Robo\Collection\CollectionInterface::addCode
175
-   *
176
-   * @param callable $code
177
-   * @param int|string $name
178
-   *
179
-   * @return $this
180
-   */
171
+    /**
172
+     * Add arbitrary code to execute as a task.
173
+     *
174
+     * @see \Robo\Collection\CollectionInterface::addCode
175
+     *
176
+     * @param callable $code
177
+     * @param int|string $name
178
+     *
179
+     * @return $this
180
+     */
181 181
     public function addCode(callable $code, $name = \Robo\Collection\CollectionInterface::UNNAMEDTASK)
182 182
     {
183 183
         $this->getCollection()->addCode($code, $name);
Please login to merge, or discard this patch.