@@ -23,8 +23,8 @@ |
||
23 | 23 | public function createConfigMock(bool $loadedFromFile = false, string $path = ''): CHConfig |
24 | 24 | { |
25 | 25 | $config = $this->getMockBuilder(CHConfig::class) |
26 | - ->disableOriginalConstructor() |
|
27 | - ->getMock(); |
|
26 | + ->disableOriginalConstructor() |
|
27 | + ->getMock(); |
|
28 | 28 | |
29 | 29 | $config->method('isLoadedFromFile')->willReturn($loadedFromFile); |
30 | 30 | $config->method('getPath')->willReturn($path); |
@@ -25,8 +25,8 @@ discard block |
||
25 | 25 | public function createRepositoryMock(string $root = ''): Repository |
26 | 26 | { |
27 | 27 | $repo = $this->getMockBuilder(Repository::class) |
28 | - ->disableOriginalConstructor() |
|
29 | - ->getMock(); |
|
28 | + ->disableOriginalConstructor() |
|
29 | + ->getMock(); |
|
30 | 30 | |
31 | 31 | $repo->method('getRoot')->willReturn($root); |
32 | 32 | $repo->method('getHooksDir')->willReturn($root . '/.git/hooks'); |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | public function createGitInfoOperator(string $tag = 'v1.0.0'): Info |
44 | 44 | { |
45 | 45 | $operator = $this->getMockBuilder(Info::class) |
46 | - ->disableOriginalConstructor() |
|
47 | - ->getMock(); |
|
46 | + ->disableOriginalConstructor() |
|
47 | + ->getMock(); |
|
48 | 48 | |
49 | 49 | $operator->method('getCurrentTag')->willReturn($tag); |
50 | 50 | |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | public function createGitDiffOperator(array $changedFiles = []): Diff |
61 | 61 | { |
62 | 62 | $operator = $this->getMockBuilder(Diff::class) |
63 | - ->disableOriginalConstructor() |
|
64 | - ->getMock(); |
|
63 | + ->disableOriginalConstructor() |
|
64 | + ->getMock(); |
|
65 | 65 | |
66 | 66 | $operator->method('getChangedFiles')->willReturn($changedFiles); |
67 | 67 | |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | public function createGitIndexOperator(array $stagedFiles = []): Index |
78 | 78 | { |
79 | 79 | $operator = $this->getMockBuilder(Index::class) |
80 | - ->disableOriginalConstructor() |
|
81 | - ->getMock(); |
|
80 | + ->disableOriginalConstructor() |
|
81 | + ->getMock(); |
|
82 | 82 | |
83 | 83 | $operator->method('getStagedFiles')->willReturn($stagedFiles); |
84 | 84 |
@@ -46,8 +46,8 @@ |
||
46 | 46 | public function getOutputMock() |
47 | 47 | { |
48 | 48 | return $this->getMockBuilder(OutputInterface::class) |
49 | - ->disableOriginalConstructor() |
|
50 | - ->getMock(); |
|
49 | + ->disableOriginalConstructor() |
|
50 | + ->getMock(); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
@@ -232,7 +232,7 @@ |
||
232 | 232 | $io = new DefaultIO($input, $output, $helper); |
233 | 233 | $answer = $io->askAndValidate( |
234 | 234 | 'foo', |
235 | - function () { |
|
235 | + function() { |
|
236 | 236 | return true; |
237 | 237 | } |
238 | 238 | ); |
@@ -18,8 +18,8 @@ |
||
18 | 18 | public function setUp(): void |
19 | 19 | { |
20 | 20 | $mock = $this->getMockBuilder(IOInterface::class) |
21 | - ->disableOriginalConstructor() |
|
22 | - ->getMock(); |
|
21 | + ->disableOriginalConstructor() |
|
22 | + ->getMock(); |
|
23 | 23 | $mock->method('isInteractive')->willReturn(false); |
24 | 24 | $mock->method('isDebug')->willReturn(false); |
25 | 25 | $mock->method('isVerbose')->willReturn(false); |
@@ -126,7 +126,7 @@ |
||
126 | 126 | true, |
127 | 127 | $this->io->askAndValidate( |
128 | 128 | 'foo', |
129 | - function () { |
|
129 | + function() { |
|
130 | 130 | return true; |
131 | 131 | }, |
132 | 132 | null, |
@@ -55,8 +55,8 @@ |
||
55 | 55 | ); |
56 | 56 | |
57 | 57 | $io = $this->getMockBuilder(DefaultIO::class) |
58 | - ->disableOriginalConstructor() |
|
59 | - ->getMock(); |
|
58 | + ->disableOriginalConstructor() |
|
59 | + ->getMock(); |
|
60 | 60 | |
61 | 61 | $io->method('ask')->will($this->onConsecutiveCalls('\\Foo\\Bar', 'n')); |
62 | 62 | $io->expects($this->once())->method('write'); |
@@ -29,7 +29,7 @@ |
||
29 | 29 | { |
30 | 30 | $this->expectException(Exception::class); |
31 | 31 | |
32 | - $input = new ArrayInput( |
|
32 | + $input = new ArrayInput( |
|
33 | 33 | [ |
34 | 34 | 'hook' => 'pre-commit', |
35 | 35 | '--configuration' => 'foo' |
@@ -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(); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | ); |
80 | 80 | |
81 | 81 | if (IOUtil::answerToBool($answer)) { |
82 | - $call = '\\CaptainHook\\App\\Hook\\PHP\\Action\\Linting'; |
|
82 | + $call = '\\CaptainHook\\App\\Hook\\PHP\\Action\\Linting'; |
|
83 | 83 | $config->addAction(new Config\Action($call)); |
84 | 84 | } |
85 | 85 | } |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | ); |
123 | 123 | |
124 | 124 | if (IOUtil::answerToBool($answer)) { |
125 | - $call = $this->io->ask( |
|
125 | + $call = $this->io->ask( |
|
126 | 126 | ' <info>Enter the phpcs command you want to execute.</info> ' |
127 | 127 | . '<comment>[phpcs --standard=psr2 src]</comment> ', |
128 | 128 | 'phpcs --standard=psr2 src' |
@@ -80,7 +80,7 @@ |
||
80 | 80 | 'CAPTAINHOOK FOUND ' . $err . ' PROBLEM' . ($err === 1 ? '' : 'S') . ' IN YOUR COMMIT MESSAGE', |
81 | 81 | IOUtil::getLineSeparator(80, '-') |
82 | 82 | ]; |
83 | - $msg = OutputUtil::trimEmptyLines($repository->getCommitMsg()->getLines()); |
|
83 | + $msg = OutputUtil::trimEmptyLines($repository->getCommitMsg()->getLines()); |
|
84 | 84 | |
85 | 85 | $lines = [IOUtil::getLineSeparator(80, '-')]; |
86 | 86 | foreach ($problems as $problem) { |
@@ -55,8 +55,8 @@ |
||
55 | 55 | ); |
56 | 56 | |
57 | 57 | $io = $this->getMockBuilder(DefaultIO::class) |
58 | - ->disableOriginalConstructor() |
|
59 | - ->getMock(); |
|
58 | + ->disableOriginalConstructor() |
|
59 | + ->getMock(); |
|
60 | 60 | $io->expects($this->once())->method('write'); |
61 | 61 | |
62 | 62 | $add->setIO($io); |
@@ -29,7 +29,7 @@ |
||
29 | 29 | { |
30 | 30 | $this->expectException(Exception::class); |
31 | 31 | |
32 | - $input = new ArrayInput( |
|
32 | + $input = new ArrayInput( |
|
33 | 33 | [ |
34 | 34 | 'hook' => 'pre-commit', |
35 | 35 | '--configuration' => 'foo' |