@@ -50,7 +50,7 @@ |
||
50 | 50 | $command = $io->getArgument(Hooks::ARG_COMMAND); |
51 | 51 | |
52 | 52 | /** @var \CaptainHook\App\Git\ChangedFiles\Detecting $class */ |
53 | - $class = self::$detectors[$command] ?? '\\CaptainHook\\App\\Git\\ChangedFiles\\Detector\\Fallback'; |
|
53 | + $class = self::$detectors[$command] ?? '\\CaptainHook\\App\\Git\\ChangedFiles\\Detector\\Fallback'; |
|
54 | 54 | return new $class($io, $repository); |
55 | 55 | } |
56 | 56 | } |
@@ -45,13 +45,13 @@ |
||
45 | 45 | $io = $this->createIOMock(); |
46 | 46 | $io->method('getArgument')->willReturn('hook:pre-push'); |
47 | 47 | $io->expects($this->atLeastOnce()) |
48 | - ->method('getStandardInput') |
|
49 | - ->willReturn( |
|
50 | - [ |
|
51 | - 'refs/heads/main 9dfa0fa6221d75f48b2dfac359127324bedf8409' . |
|
52 | - ' refs/heads/main 8309f6e16097754469c485e604900c573bf2c5d8' |
|
53 | - ] |
|
54 | - ); |
|
48 | + ->method('getStandardInput') |
|
49 | + ->willReturn( |
|
50 | + [ |
|
51 | + 'refs/heads/main 9dfa0fa6221d75f48b2dfac359127324bedf8409' . |
|
52 | + ' refs/heads/main 8309f6e16097754469c485e604900c573bf2c5d8' |
|
53 | + ] |
|
54 | + ); |
|
55 | 55 | $operator = $this->createGitDiffOperator(['fiz.php', 'foo.txt']); |
56 | 56 | $repository = $this->createRepositoryMock(''); |
57 | 57 | $repository->expects($this->once())->method('getDiffOperator')->willReturn($operator); |
@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | ->method('getBranchRevFromRefLog') |
49 | 49 | ->willReturn('main'); |
50 | 50 | $info->expects($this->once()) |
51 | - ->method('getCurrentBranch') |
|
52 | - ->willReturn('foo'); |
|
51 | + ->method('getCurrentBranch') |
|
52 | + ->willReturn('foo'); |
|
53 | 53 | |
54 | 54 | $repo->expects($this->atLeastOnce())->method('getLogOperator')->willReturn($log); |
55 | 55 | $repo->expects($this->atLeastOnce())->method('getInfoOperator')->willReturn($info); |
@@ -102,8 +102,8 @@ discard block |
||
102 | 102 | ->method('getChangedFilesSince') |
103 | 103 | ->willReturn(['file1.php', 'file2.php', 'README.md', 'foo.txt']); |
104 | 104 | $info->expects($this->once()) |
105 | - ->method('getCurrentBranch') |
|
106 | - ->willReturn('foo'); |
|
105 | + ->method('getCurrentBranch') |
|
106 | + ->willReturn('foo'); |
|
107 | 107 | |
108 | 108 | $repo->expects($this->atLeastOnce())->method('getLogOperator')->willReturn($log); |
109 | 109 | $repo->expects($this->atLeastOnce())->method('getInfoOperator')->willReturn($info); |
@@ -129,8 +129,8 @@ discard block |
||
129 | 129 | ->method('getChangedFilesSince') |
130 | 130 | ->willReturn(['foo/file1.php', 'foo/file2.php', 'README.md']); |
131 | 131 | $info->expects($this->once()) |
132 | - ->method('getCurrentBranch') |
|
133 | - ->willReturn('foo'); |
|
132 | + ->method('getCurrentBranch') |
|
133 | + ->willReturn('foo'); |
|
134 | 134 | |
135 | 135 | $repo->expects($this->atLeastOnce())->method('getLogOperator')->willReturn($log); |
136 | 136 | $repo->expects($this->atLeastOnce())->method('getInfoOperator')->willReturn($info); |
@@ -81,7 +81,7 @@ |
||
81 | 81 | '<fg=red>Warning: Hook script is out of date</>', |
82 | 82 | 'The git hook script needs to be updated.', |
83 | 83 | 'Required version is <info>' . CH::MIN_REQ_INSTALLER . '</info>' |
84 | - . ' found <fg=red>' . $installerVersion . '</>.', |
|
84 | + . ' found <fg=red>' . $installerVersion . '</>.', |
|
85 | 85 | 'Please re-install your hook by running:', |
86 | 86 | ' <comment>captainhook install ' . $this->hook . '</comment>', |
87 | 87 | '', |
@@ -59,7 +59,7 @@ |
||
59 | 59 | */ |
60 | 60 | public function handle(Event $event): void |
61 | 61 | { |
62 | - if (!IOUtil::answerToBool($event->io()->ask(PHP_EOL . $this->question . ' ', $this->default ? 'y' : 'n'))) { |
|
62 | + if (!IOUtil::answerToBool($event->io()->ask(PHP_EOL . $this->question . ' ', $this->default ? 'y' : 'n'))) { |
|
63 | 63 | throw new ActionFailed('no confirmation, abort!'); |
64 | 64 | } |
65 | 65 | } |
@@ -37,32 +37,32 @@ |
||
37 | 37 | { |
38 | 38 | parent::configure(); |
39 | 39 | $this->setName('uninstall') |
40 | - ->setDescription('Remove all git hooks from your .git/hooks directory') |
|
41 | - ->setHelp('Remove all git hooks from your .git/hooks directory') |
|
42 | - ->addArgument( |
|
43 | - 'hook', |
|
44 | - InputArgument::OPTIONAL, |
|
45 | - 'Remove only this one hook. By default all hooks get uninstalled' |
|
46 | - ) |
|
47 | - ->addOption( |
|
48 | - 'force', |
|
49 | - 'f', |
|
50 | - InputOption::VALUE_NONE, |
|
51 | - 'Force install without confirmation' |
|
52 | - ) |
|
53 | - ->addOption( |
|
54 | - 'only-disabled', |
|
55 | - null, |
|
56 | - InputOption::VALUE_NONE, |
|
57 | - 'Limit the hooks you want to remove to those that are not enabled in your conf. ' . |
|
58 | - 'By default all hooks get uninstalled' |
|
59 | - ) |
|
60 | - ->addOption( |
|
61 | - 'move-existing-to', |
|
62 | - null, |
|
63 | - InputOption::VALUE_OPTIONAL, |
|
64 | - 'Move existing hooks to this directory' |
|
65 | - ); |
|
40 | + ->setDescription('Remove all git hooks from your .git/hooks directory') |
|
41 | + ->setHelp('Remove all git hooks from your .git/hooks directory') |
|
42 | + ->addArgument( |
|
43 | + 'hook', |
|
44 | + InputArgument::OPTIONAL, |
|
45 | + 'Remove only this one hook. By default all hooks get uninstalled' |
|
46 | + ) |
|
47 | + ->addOption( |
|
48 | + 'force', |
|
49 | + 'f', |
|
50 | + InputOption::VALUE_NONE, |
|
51 | + 'Force install without confirmation' |
|
52 | + ) |
|
53 | + ->addOption( |
|
54 | + 'only-disabled', |
|
55 | + null, |
|
56 | + InputOption::VALUE_NONE, |
|
57 | + 'Limit the hooks you want to remove to those that are not enabled in your conf. ' . |
|
58 | + 'By default all hooks get uninstalled' |
|
59 | + ) |
|
60 | + ->addOption( |
|
61 | + 'move-existing-to', |
|
62 | + null, |
|
63 | + InputOption::VALUE_OPTIONAL, |
|
64 | + 'Move existing hooks to this directory' |
|
65 | + ); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | ); |
82 | 82 | |
83 | 83 | if (IOUtil::answerToBool($answer)) { |
84 | - $call = '\\CaptainHook' . '\\App' . '\\Hook\\PHP\\Action\\Linting'; |
|
84 | + $call = '\\CaptainHook' . '\\App' . '\\Hook\\PHP\\Action\\Linting'; |
|
85 | 85 | $config->addAction(new Config\Action($call)); |
86 | 86 | } |
87 | 87 | } |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | ); |
125 | 125 | |
126 | 126 | if (IOUtil::answerToBool($answer)) { |
127 | - $call = $this->io->ask( |
|
127 | + $call = $this->io->ask( |
|
128 | 128 | ' <info>Enter the phpcs command you want to execute.</info> ' |
129 | 129 | . '<comment>[phpcs --standard=psr2 src]</comment> ', |
130 | 130 | 'phpcs --standard=psr2 src' |
@@ -109,7 +109,7 @@ |
||
109 | 109 | |
110 | 110 | $executableInclude = substr($executablePath, 0, 1) == '/' |
111 | 111 | ? '\'' . $executablePath . '\'' |
112 | - : '__DIR__ . \'/../../' . $executablePath . '\''; |
|
112 | + : '__DIR__ . \'/../../' . $executablePath . '\''; |
|
113 | 113 | |
114 | 114 | $bootstrapOption = $this->getBootstrapCmdOption(); |
115 | 115 | $bootstrapOptionQuoted = empty($bootstrapOption) ? '' : ' \'' . $bootstrapOption . '\','; |
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function testStdInValue(): void |
29 | 29 | { |
30 | 30 | $expected = 'refs/heads/main 9dfa0fa6221d75f48b2dfac359127324bedf8409' |
31 | - . ' refs/heads/main 8309f6e16097754469c485e604900c573bf2c5d8'; |
|
31 | + . ' refs/heads/main 8309f6e16097754469c485e604900c573bf2c5d8'; |
|
32 | 32 | |
33 | 33 | $io = $this->createIOMock(); |
34 | 34 | $repo = $this->createRepositoryMock(); |