@@ -110,7 +110,7 @@ |
||
110 | 110 | true, |
111 | 111 | $io->askAndValidate( |
112 | 112 | 'foo', |
113 | - function () { |
|
113 | + function() { |
|
114 | 114 | return true; |
115 | 115 | }, |
116 | 116 | false, |
@@ -247,7 +247,7 @@ |
||
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 | ); |
@@ -39,7 +39,7 @@ |
||
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 | } |
@@ -55,7 +55,7 @@ |
||
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 | ]); |
@@ -51,7 +51,7 @@ |
||
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', |
@@ -214,7 +214,7 @@ |
||
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']); |
@@ -34,7 +34,7 @@ |
||
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 | } |
@@ -38,7 +38,7 @@ discard block |
||
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 |
||
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 | } |
@@ -77,7 +77,7 @@ discard block |
||
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 |
||
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(); |