Completed
Pull Request — master (#997)
by Andrzej
02:14
created
tests/_helpers/CodeGuy.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     use _generated\CodeGuyActions;
22 22
 
23
-   /**
24
-    * Define custom actions here
25
-    */
23
+    /**
24
+     * Define custom actions here
25
+     */
26 26
 }
Please login to merge, or discard this patch.
src/Common/ResourceExistenceChecker.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -90,25 +90,25 @@
 block discarded – undo
90 90
         $this->checkResources($targets);
91 91
     }
92 92
 
93
-   /**
94
-    * Wrapper method around phps is_dir()
95
-    *
96
-    * @param string $directory
97
-    *
98
-    * @return bool
99
-    */
93
+    /**
94
+     * Wrapper method around phps is_dir()
95
+     *
96
+     * @param string $directory
97
+     *
98
+     * @return bool
99
+     */
100 100
     protected function isDir($directory)
101 101
     {
102 102
         return is_dir($directory);
103 103
     }
104 104
 
105
-   /**
106
-    * Wrapper method around phps file_exists()
107
-    *
108
-    * @param string $file
109
-    *
110
-    * @return bool
111
-    */
105
+    /**
106
+     * Wrapper method around phps file_exists()
107
+     *
108
+     * @param string $file
109
+     *
110
+     * @return bool
111
+     */
112 112
     protected function isFile($file)
113 113
     {
114 114
         return file_exists($file);
Please login to merge, or discard this patch.
tests/unit/Task/HgTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use AspectMock\Test as test;
4
-
5 3
 class HgTest extends \Codeception\TestCase\Test
6 4
 {
7 5
     /**
Please login to merge, or discard this patch.
src/Task/Testing/Codecept.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Robo\Exception\TaskException;
6 6
 use Robo\Task\BaseTask;
7 7
 use Robo\Contract\CommandInterface;
8
-use Symfony\Component\Process\Process;
9 8
 
10 9
 /**
11 10
  * Executes Codeception tests
Please login to merge, or discard this patch.
src/Task/Testing/Atoum.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,6 @@
 block discarded – undo
83 83
 
84 84
     /**
85 85
      * Path to the bootstrap file.
86
-
87 86
      * @param string $file
88 87
      *
89 88
      * @return $this
Please login to merge, or discard this patch.
tests/src/RoboFileFixture.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Psr\Log\LoggerAwareTrait;
6 6
 use Psr\Log\LoggerAwareInterface;
7
-
8 7
 use Consolidation\AnnotatedCommand\Events\CustomEventAwareInterface;
9 8
 use Consolidation\AnnotatedCommand\Events\CustomEventAwareTrait;
10 9
 use Consolidation\OutputFormatters\StructuredData\PropertyList;
Please login to merge, or discard this patch.
tests/unit/Task/CollectionTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Robo\Robo;
10 10
 use Robo\Result;
11 11
 use Robo\State\Data;
12
-use Robo\Task\BaseTask;
13 12
 use Robo\Collection\Collection;
14 13
 use Robo\Task\ValueProviderTask;
15 14
 use Robo\Task\CollectionTestTask;
Please login to merge, or discard this patch.
tests/unit/Task/ComposerTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 use AspectMock\Test as test;
3
-
4 3
 use Robo\Traits\Common\AdjustQuotes;
5 4
 
6 5
 class ComposerTest extends \Codeception\TestCase\Test
Please login to merge, or discard this patch.
tests/unit/Task/GulpTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 use AspectMock\Test as test;
3
-
4 3
 use Robo\Traits\Common\AdjustQuotes;
5 4
 
6 5
 class GulpTest extends \Codeception\TestCase\Test
Please login to merge, or discard this patch.