Passed
Push — main ( 30caf2...604bfc )
by Sebastian
07:35 queued 03:41
created
tests/unit/Console/IO/NullIOTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
             true,
111 111
             $io->askAndValidate(
112 112
                 'foo',
113
-                function () {
113
+                function() {
114 114
                     return true;
115 115
                 },
116 116
                 false,
Please login to merge, or discard this patch.
tests/unit/Console/IO/DefaultIOTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@
 block discarded – undo
247 247
         $io     = new DefaultIO($this->fakeStdIn(), $input, $output, $helper);
248 248
         $answer = $io->askAndValidate(
249 249
             'foo',
250
-            function () {
250
+            function() {
251 251
                 return true;
252 252
             }
253 253
         );
Please login to merge, or discard this patch.
tests/unit/Console/Command/DisableTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             ]
40 40
         );
41 41
 
42
-        $install  = new Disable($resolver);
42
+        $install = new Disable($resolver);
43 43
         $install->setIO(new NullIO());
44 44
         $install->run($input, $output);
45 45
     }
Please login to merge, or discard this patch.
tests/unit/Console/Command/EnableTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             null,
56 56
             ['captainhook.json' => file_get_contents(CH_PATH_FILES . '/config/valid.json')]
57 57
         );
58
-        $input      = new ArrayInput([
58
+        $input = new ArrayInput([
59 59
             'hook'            => 'pre-push',
60 60
             '--configuration' => $fakeConfig->url() . '/captainhook.json',
61 61
         ]);
Please login to merge, or discard this patch.
tests/unit/Console/Command/UninstallTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     public function testUninstallPreCommitHook(): void
53 53
     {
54
-        $repo   = new DummyRepo([
54
+        $repo = new DummyRepo([
55 55
             'config' => '# fake git config',
56 56
             'hooks'  => [
57 57
                 'pre-commit' => '# fake pre-commit hook file',
Please login to merge, or discard this patch.
tests/unit/ConfigTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@
 block discarded – undo
214 214
             false,
215 215
             ['run-path' => '/usr/local/bin/captainhook', 'verbosity' => 'debug']
216 216
         );
217
-        $json   = $config->getJsonData();
217
+        $json = $config->getJsonData();
218 218
 
219 219
         $this->assertIsArray($json);
220 220
         $this->assertIsArray($json['config']);
Please login to merge, or discard this patch.
tests/unit/Runner/Config/Setup/ExpressTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $config->expects($this->exactly(2))->method('getHookConfig')->willReturn($this->createHookConfigMock());
35 35
         $io->method('ask')->will($this->onConsecutiveCalls('y', 'y', 'y', 'phpunit', 'y', 'phpcs'));
36 36
 
37
-        $setup  = new Express($io);
37
+        $setup = new Express($io);
38 38
         $setup->configureHooks($config);
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
tests/unit/Runner/Config/Setup/AdvancedTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
             )
39 39
         );
40 40
 
41
-        $setup  = new Advanced($io);
41
+        $setup = new Advanced($io);
42 42
         $setup->configureHooks($config);
43 43
     }
44 44
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         );
60 60
         $io->expects($this->once())->method('askAndValidate')->willReturn('foo:bar');
61 61
 
62
-        $setup  = new Advanced($io);
62
+        $setup = new Advanced($io);
63 63
         $setup->configureHooks($config);
64 64
     }
65 65
 }
Please login to merge, or discard this patch.
tests/unit/Hook/Message/Action/RegexTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
         $io     = new NullIO();
79 79
         $config = new Config(CH_PATH_FILES . '/captainhook.json');
80
-        $repo    = $this->createRepositoryMock();
80
+        $repo = $this->createRepositoryMock();
81 81
         $action = new Config\Action(Regex::class);
82 82
 
83 83
         $standard = new Regex();
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
                 'error' => 'No match for %s'
120 120
             ]
121 121
         );
122
-        $repo   = $this->createRepositoryMock();
122
+        $repo = $this->createRepositoryMock();
123 123
         $repo->expects($this->once())->method('getCommitMsg')->willReturn(new CommitMessage('Foo bar baz'));
124 124
 
125 125
         $standard = new Regex();
Please login to merge, or discard this patch.