@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | } |
| 113 | 113 | ksort($relevantContent); |
| 114 | 114 | |
| 115 | - return md5((string)json_encode($relevantContent)); |
|
| 115 | + return md5((string) json_encode($relevantContent)); |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -127,6 +127,6 @@ discard block |
||
| 127 | 127 | if (!file_exists($file)) { |
| 128 | 128 | throw new Exception($file . ' not found'); |
| 129 | 129 | } |
| 130 | - return (string)file_get_contents($file); |
|
| 130 | + return (string) file_get_contents($file); |
|
| 131 | 131 | } |
| 132 | 132 | } |
@@ -90,7 +90,7 @@ |
||
| 90 | 90 | */ |
| 91 | 91 | public function getArgument(string $name, string $default = ''): string |
| 92 | 92 | { |
| 93 | - return (string)($this->getArguments()[$name] ?? $default); |
|
| 93 | + return (string) ($this->getArguments()[$name] ?? $default); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | /** |
@@ -36,9 +36,9 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | parent::configure(); |
| 38 | 38 | $this->setName('add') |
| 39 | - ->setDescription('Add an action to a hook configuration') |
|
| 40 | - ->setHelp('This command will add an action configuration to a given hook configuration') |
|
| 41 | - ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to add the action to'); |
|
| 39 | + ->setDescription('Add an action to a hook configuration') |
|
| 40 | + ->setHelp('This command will add an action configuration to a given hook configuration') |
|
| 41 | + ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to add the action to'); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -57,8 +57,8 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | $editor = new Editor($io, $config); |
| 59 | 59 | $editor->setHook(IOUtil::argToString($input->getArgument('hook'))) |
| 60 | - ->setChange('AddAction') |
|
| 61 | - ->run(); |
|
| 60 | + ->setChange('AddAction') |
|
| 61 | + ->run(); |
|
| 62 | 62 | |
| 63 | 63 | return 0; |
| 64 | 64 | } |
@@ -36,9 +36,9 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | parent::configure(); |
| 38 | 38 | $this->setName('disable') |
| 39 | - ->setDescription('Disable a hook execution') |
|
| 40 | - ->setHelp('This command will disable a hook configuration for a given hook') |
|
| 41 | - ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to disable'); |
|
| 39 | + ->setDescription('Disable a hook execution') |
|
| 40 | + ->setHelp('This command will disable a hook configuration for a given hook') |
|
| 41 | + ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to disable'); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -57,8 +57,8 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | $editor = new Editor($io, $config); |
| 59 | 59 | $editor->setHook(IOUtil::argToString($input->getArgument('hook'))) |
| 60 | - ->setChange('DisableHook') |
|
| 61 | - ->run(); |
|
| 60 | + ->setChange('DisableHook') |
|
| 61 | + ->run(); |
|
| 62 | 62 | |
| 63 | 63 | return 0; |
| 64 | 64 | } |
@@ -46,8 +46,8 @@ |
||
| 46 | 46 | { |
| 47 | 47 | parent::configure(); |
| 48 | 48 | $this->setName('hook:' . $this->hookName) |
| 49 | - ->setDescription('Run git ' . $this->hookName . ' hook.') |
|
| 50 | - ->setHelp('This command executes the ' . $this->hookName . ' hook.'); |
|
| 49 | + ->setDescription('Run git ' . $this->hookName . ' hook.') |
|
| 50 | + ->setHelp('This command executes the ' . $this->hookName . ' hook.'); |
|
| 51 | 51 | |
| 52 | 52 | $this->addOption( |
| 53 | 53 | 'bootstrap', |
@@ -36,9 +36,9 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | parent::configure(); |
| 38 | 38 | $this->setName('enable') |
| 39 | - ->setDescription('Enable a hook execution') |
|
| 40 | - ->setHelp('This command will enable a hook configuration for a given hook') |
|
| 41 | - ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to enable'); |
|
| 39 | + ->setDescription('Enable a hook execution') |
|
| 40 | + ->setHelp('This command will enable a hook configuration for a given hook') |
|
| 41 | + ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to enable'); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -57,8 +57,8 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | $editor = new Editor($io, $config); |
| 59 | 59 | $editor->setHook(IOUtil::argToString($input->getArgument('hook'))) |
| 60 | - ->setChange('EnableHook') |
|
| 61 | - ->run(); |
|
| 60 | + ->setChange('EnableHook') |
|
| 61 | + ->run(); |
|
| 62 | 62 | |
| 63 | 63 | return 0; |
| 64 | 64 | } |
@@ -67,9 +67,9 @@ |
||
| 67 | 67 | public function beforeHook(): void |
| 68 | 68 | { |
| 69 | 69 | $this->commentChar = $this->repository->getConfigOperator()->getSafely('core.commentchar', '#'); |
| 70 | - $this->file = (string)$this->io->getArgument('file'); |
|
| 71 | - $this->mode = (string)$this->io->getArgument('mode'); |
|
| 72 | - $this->hash = (string)$this->io->getArgument('hash'); |
|
| 70 | + $this->file = (string) $this->io->getArgument('file'); |
|
| 71 | + $this->mode = (string) $this->io->getArgument('mode'); |
|
| 72 | + $this->hash = (string) $this->io->getArgument('hash'); |
|
| 73 | 73 | |
| 74 | 74 | if (empty($this->file)) { |
| 75 | 75 | throw new RuntimeException('commit message file argument is missing'); |
@@ -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, |
@@ -38,8 +38,8 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | $runner = new Editor($io, $config); |
| 40 | 40 | $runner->setHook('foo') |
| 41 | - ->setChange('EnableHook') |
|
| 42 | - ->run(); |
|
| 41 | + ->setChange('EnableHook') |
|
| 42 | + ->run(); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | |
| 56 | 56 | $runner = new Editor($io, $config); |
| 57 | 57 | $runner->setChange('EnableHook') |
| 58 | - ->run(); |
|
| 58 | + ->run(); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /** |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | $runner = new Editor($io, $config); |
| 75 | 75 | $runner->setHook('pre-commit') |
| 76 | - ->run(); |
|
| 76 | + ->run(); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |
@@ -91,8 +91,8 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | $runner = new Editor($io, $config); |
| 93 | 93 | $runner->setChange('InvalidChange') |
| 94 | - ->setHook('pre-commit') |
|
| 95 | - ->run(); |
|
| 94 | + ->setHook('pre-commit') |
|
| 95 | + ->run(); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | /** |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | |
| 111 | 111 | $runner = new Editor($io, $config); |
| 112 | 112 | $runner->setChange('EnableHook') |
| 113 | - ->run(); |
|
| 113 | + ->run(); |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | /** |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | $runner = new Editor($io, $config); |
| 130 | 130 | $runner->setHook('pre-commit') |
| 131 | - ->run(); |
|
| 131 | + ->run(); |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | |
| 147 | 147 | $runner = new Editor($io, $config); |
| 148 | 148 | $runner->setChange('AddAction') |
| 149 | - ->setHook('pre-commit') |
|
| 150 | - ->run(); |
|
| 149 | + ->setHook('pre-commit') |
|
| 150 | + ->run(); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | /** |
@@ -165,8 +165,8 @@ discard block |
||
| 165 | 165 | |
| 166 | 166 | $runner = new Creator($io, $config); |
| 167 | 167 | $runner->extend(true) |
| 168 | - ->advanced(true) |
|
| 169 | - ->run(); |
|
| 168 | + ->advanced(true) |
|
| 169 | + ->run(); |
|
| 170 | 170 | |
| 171 | 171 | $this->assertFileExists($configDir->url() . '/captainhook.json'); |
| 172 | 172 | } |