@@ -62,7 +62,7 @@ |
||
62 | 62 | |
63 | 63 | // if there is a commit message don't do anything just delete the file |
64 | 64 | if ($repository->getCommitMsg()->isEmpty()) { |
65 | - $msg = (string)file_get_contents($cacheFile); |
|
65 | + $msg = (string) file_get_contents($cacheFile); |
|
66 | 66 | $repository->setCommitMsg( |
67 | 67 | new CommitMessage($msg, $repository->getCommitMsg()->getCommentCharacter()) |
68 | 68 | ); |
@@ -69,8 +69,8 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function __construct(array $options) |
71 | 71 | { |
72 | - $this->directories = (array)($options['inDirectory'] ?? []); |
|
73 | - $this->suffixes = (array)($options['ofType'] ?? []); |
|
72 | + $this->directories = (array) ($options['inDirectory'] ?? []); |
|
73 | + $this->suffixes = (array) ($options['ofType'] ?? []); |
|
74 | 74 | |
75 | 75 | $diffFilter = $options['diffFilter'] ?? []; |
76 | 76 | $this->diffFilter = FilterUtil::sanitize(is_array($diffFilter) ? $diffFilter : str_split($diffFilter)); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | if (empty($this->directories)) { |
113 | 113 | return $files; |
114 | 114 | } |
115 | - return array_filter($files, function ($file) { |
|
115 | + return array_filter($files, function($file) { |
|
116 | 116 | foreach ($this->directories as $directory) { |
117 | 117 | if (str_starts_with($file, $directory)) { |
118 | 118 | return true; |
@@ -48,7 +48,7 @@ |
||
48 | 48 | { |
49 | 49 | $realConditions = []; |
50 | 50 | foreach ($conditions as $condition) { |
51 | - if (! $condition instanceof Condition) { |
|
51 | + if (!$condition instanceof Condition) { |
|
52 | 52 | continue; |
53 | 53 | } |
54 | 54 | $realConditions[] = $condition; |
@@ -139,7 +139,7 @@ |
||
139 | 139 | . 'found ' . $this->totalMatches . ' match' |
140 | 140 | . ($this->totalMatches > 1 ? 'es' : '') |
141 | 141 | . ' in ' . $filesFailed . ' file' |
142 | - . ($filesFailed > 1 ? 's' : '' ); |
|
142 | + . ($filesFailed > 1 ? 's' : ''); |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | /** |
@@ -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 | } |
@@ -110,7 +110,7 @@ |
||
110 | 110 | |
111 | 111 | $executableInclude = substr($executablePath, 0, 1) == '/' |
112 | 112 | ? '\'' . $executablePath . '\'' |
113 | - : '__DIR__ . \'/../../' . $executablePath . '\''; |
|
113 | + : '__DIR__ . \'/../../' . $executablePath . '\''; |
|
114 | 114 | return array_merge( |
115 | 115 | [ |
116 | 116 | '#!/usr/bin/env php', |
@@ -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 | } |
@@ -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 | ); |
@@ -166,7 +166,7 @@ |
||
166 | 166 | $repo = new Repository($fakeRepo->getRoot()); |
167 | 167 | |
168 | 168 | $config->method('isHookEnabled')->willReturnCallback( |
169 | - function (string $hook): bool { |
|
169 | + function(string $hook): bool { |
|
170 | 170 | return $hook === 'pre-push'; |
171 | 171 | } |
172 | 172 | ); |