Completed
Push — master ( 2d2a4f...6d125c )
by Greg
01:53
created
tests/src/Traits/TestTasksTrait.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@  discard block
 block discarded – undo
17 17
     protected $capturedOutput;
18 18
     protected $logger;
19 19
 
20
+    /**
21
+     * @return \League\Container\ContainerInterface
22
+     */
20 23
     public function initTestTasksTrait($commandClass = null, $container = null, $input = null)
21 24
     {
22 25
         if (!$container) {
@@ -47,6 +50,9 @@  discard block
 block discarded – undo
47 50
         return $container;
48 51
     }
49 52
 
53
+    /**
54
+     * @return null|OutputInterface
55
+     */
50 56
     public function capturedOutputStream()
51 57
     {
52 58
         if (!$this->testPrinter) {
@@ -66,6 +72,9 @@  discard block
 block discarded – undo
66 72
         return $this->capturedOutput;
67 73
     }
68 74
 
75
+    /**
76
+     * @param string $value
77
+     */
69 78
     public function assertOutputContains($value)
70 79
     {
71 80
         $output = $this->accumulate();
@@ -73,6 +82,9 @@  discard block
 block discarded – undo
73 82
         $this->assertContains($value, $output);
74 83
     }
75 84
 
85
+    /**
86
+     * @param string $value
87
+     */
76 88
     public function assertOutputNotContains($value)
77 89
     {
78 90
         $output = $this->accumulate();
@@ -80,6 +92,9 @@  discard block
 block discarded – undo
80 92
         $this->assertNotContains($value, $output);
81 93
     }
82 94
 
95
+    /**
96
+     * @param string $value
97
+     */
83 98
     public function assertOutputEquals($value)
84 99
     {
85 100
         $output = $this->accumulate();
@@ -90,6 +105,7 @@  discard block
 block discarded – undo
90 105
     /**
91 106
      * Make our output comparisons more platform-agnostic by converting
92 107
      * CRLF (Windows) or raw CR (confused output) to a LF (unix/Mac).
108
+     * @param string $output
93 109
      */
94 110
     protected function simplify($output)
95 111
     {
Please login to merge, or discard this patch.
tests/src/Fixtures.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     public function mktmpdir($basedir = false)
48 48
     {
49
-        $tempfile = tempnam($basedir ?: $this->testDir ?: sys_get_temp_dir(),'robo-tests');
49
+        $tempfile = tempnam($basedir ?: $this->testDir ?: sys_get_temp_dir(), 'robo-tests');
50 50
         unlink($tempfile);
51 51
         mkdir($tempfile);
52 52
         $this->tmpDirs[] = $tempfile;
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,7 @@
 block discarded – undo
27 27
         foreach ($this->tmpDirs as $tmpDir) {
28 28
             try {
29 29
                 $fs->remove($tmpDir);
30
-            }
31
-            catch (\Exception $e) {
30
+            } catch (\Exception $e) {
32 31
                 // Ignore problems with removing fixtures.
33 32
             }
34 33
         }
Please login to merge, or discard this patch.
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      * Create a new temporary directory.
40 40
      *
41 41
      * @param string|bool $basedir Where to store the temporary directory
42
-     * @return type
42
+     * @return string
43 43
      */
44 44
     public function mktmpdir($basedir = false)
45 45
     {
@@ -61,6 +61,9 @@  discard block
 block discarded – undo
61 61
         return $targetSandbox;
62 62
     }
63 63
 
64
+    /**
65
+     * @param string $filename
66
+     */
64 67
     public function dataFile($filename)
65 68
     {
66 69
         return $this->fixturesDir() . '/' . $filename;
Please login to merge, or discard this patch.
src/Task/File/loadTasks.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 trait loadTasks
5 5
 {
6 6
     /**
7
-     * @param array|\Iterator $files
7
+     * @param string[] $files
8 8
      *
9 9
      * @return \Robo\Task\File\Concat|\Robo\Collection\CollectionBuilder
10 10
      */
Please login to merge, or discard this patch.
src/Task/Filesystem/FlattenDir.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      * Sets the value from which direction and how much parent dirs should be included.
137 137
      * Accepts a positive or negative integer or an array with two integer values.
138 138
      *
139
-     * @param int|int[] $parents
139
+     * @param integer[] $parents
140 140
      *
141 141
      * @return $this
142 142
      *
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     }
199 199
 
200 200
     /**
201
-     * @param array $dirs
201
+     * @param string[] $dirs
202 202
      *
203 203
      * @return array|\Robo\Result
204 204
      *
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
      */
128 128
     public function dirPermissions($permission)
129 129
     {
130
-        $this->chmod = (int) $permission;
130
+        $this->chmod = (int)$permission;
131 131
 
132 132
         return $this;
133 133
     }
Please login to merge, or discard this patch.
src/Task/Filesystem/loadTasks.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 trait loadTasks
5 5
 {
6 6
     /**
7
-     * @param string|string[] $dirs
7
+     * @param string[] $dirs
8 8
      *
9 9
      * @return \Robo\Task\Filesystem\CleanDir|\Robo\Collection\CollectionBuilder
10 10
      */
Please login to merge, or discard this patch.
src/Common/ProcessUtils.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -74,6 +74,9 @@
 block discarded – undo
74 74
         return "'" . str_replace("'", "'\\''", $argument) . "'";
75 75
     }
76 76
 
77
+    /**
78
+     * @param string $char
79
+     */
77 80
     private static function isSurroundedBy($arg, $char)
78 81
     {
79 82
         return 2 < strlen($arg) && $char === $arg[0] && $char === $arg[strlen($arg) - 1];
Please login to merge, or discard this patch.
src/Task/Base/Exec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Robo\Task\Base;
4 4
 
5
-use Robo\Common\ExecTrait;
6 5
 use Robo\Contract\CommandInterface;
7 6
 use Robo\Contract\PrintedInterface;
8 7
 use Robo\Contract\SimulatedInterface;
Please login to merge, or discard this patch.
src/Runner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
     public function __construct($roboClass = null, $roboFile = null)
82 82
     {
83 83
         // set the const as class properties to allow overwriting in child classes
84
-        $this->roboClass = $roboClass ? $roboClass : self::ROBOCLASS ;
84
+        $this->roboClass = $roboClass ? $roboClass : self::ROBOCLASS;
85 85
         $this->roboFile  = $roboFile ? $roboFile : self::ROBOFILE;
86 86
         $this->dir = getcwd();
87 87
     }
Please login to merge, or discard this patch.
src/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         $createRoboFile = new Command('init');
42 42
         $createRoboFile->setDescription("Intitalizes basic RoboFile in current dir");
43
-        $createRoboFile->setCode(function () use ($roboClass, $roboFile) {
43
+        $createRoboFile->setCode(function() use ($roboClass, $roboFile) {
44 44
             $output = Robo::output();
45 45
             $output->writeln("<comment>  ~~~ Welcome to Robo! ~~~~ </comment>");
46 46
             $output->writeln("<comment>  " . basename($roboFile) . " will be created in the current directory </comment>");
Please login to merge, or discard this patch.