Completed
Pull Request — master (#924)
by Greg
02:07
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.
tests/cli/WriteFileCest.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@  discard block
 block discarded – undo
11 11
     {
12 12
         $I->wantTo('write lines with WriteToFile task');
13 13
         $I->taskWriteToFile('blogpost.md')
14
-           ->line('****')
15
-           ->line('hello world')
16
-           ->line('****')
17
-           ->run();
14
+            ->line('****')
15
+            ->line('hello world')
16
+            ->line('****')
17
+            ->run();
18 18
         $I->seeFileFound('blogpost.md');
19 19
         $I->seeFileContentsEqual(<<<HERE
20 20
 ****
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
     public function appendToFile(CliGuy $I)
29 29
     {
30 30
         $I->taskWriteToFile('a.txt')
31
-           ->append()
32
-           ->line('hello world')
33
-           ->run();
31
+            ->append()
32
+            ->line('hello world')
33
+            ->run();
34 34
         $I->seeFileFound('a.txt');
35 35
         $I->seeFileContentsEqual(<<<HERE
36 36
 Ahello world
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     public function testWouldChange(CliGuy $I)
43 43
     {
44 44
         $writeTask = $I->taskWriteToFile('a.txt')
45
-           ->append();
45
+            ->append();
46 46
         $I->assertEquals(false, $writeTask->wouldChange(), "No changes to test file.");
47 47
         $writeTask->line('hello world');
48 48
         $I->assertEquals(true, $writeTask->wouldChange(), "Test file would change.");
@@ -68,15 +68,15 @@  discard block
 block discarded – undo
68 68
     {
69 69
         $I->wantTo('append lines with WriteToFile task, but only if pattern does not match');
70 70
         $I->taskWriteToFile('blogpost.md')
71
-           ->line('****')
72
-           ->line('hello world')
73
-           ->line('****')
74
-           ->appendUnlessMatches('/hello/', 'Should not add this')
75
-           ->appendUnlessMatches('/goodbye/', 'Should add this')
76
-           ->appendIfMatches('/hello/', ' and should also add this')
77
-           ->appendIfMatches('/goodbye/', ' but should not add this')
78
-           ->appendIfMatches('/should/', '!')
79
-           ->run();
71
+            ->line('****')
72
+            ->line('hello world')
73
+            ->line('****')
74
+            ->appendUnlessMatches('/hello/', 'Should not add this')
75
+            ->appendUnlessMatches('/goodbye/', 'Should add this')
76
+            ->appendIfMatches('/hello/', ' and should also add this')
77
+            ->appendIfMatches('/goodbye/', ' but should not add this')
78
+            ->appendIfMatches('/should/', '!')
79
+            ->run();
80 80
         $I->seeFileFound('blogpost.md');
81 81
         $I->seeFileContentsEqual(<<<HERE
82 82
 ****
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/Base/Exec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Robo\Task\Base;
3 3
 
4
-use Robo\Common\ExecTrait;
5 4
 use Robo\Contract\CommandInterface;
6 5
 use Robo\Contract\PrintedInterface;
7 6
 use Robo\Contract\SimulatedInterface;
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.
src/Log/ResultPrinter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Robo\Contract\ProgressIndicatorAwareInterface;
7 7
 use Robo\Contract\VerbosityThresholdInterface;
8 8
 use Robo\Common\ProgressIndicatorAwareTrait;
9
-
10 9
 use Psr\Log\LogLevel;
11 10
 use Psr\Log\LoggerAwareInterface;
12 11
 use Psr\Log\LoggerAwareTrait;
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.