@@ -32,8 +32,8 @@ discard block |
||
| 32 | 32 | public function createResolverMock(string $executable = 'vendor/bin/captainhook', bool $isPhar = false): Resolver |
| 33 | 33 | { |
| 34 | 34 | $repo = $this->getMockBuilder(Resolver::class) |
| 35 | - ->disableOriginalConstructor() |
|
| 36 | - ->getMock(); |
|
| 35 | + ->disableOriginalConstructor() |
|
| 36 | + ->getMock(); |
|
| 37 | 37 | |
| 38 | 38 | $repo->method('getExecutable')->willReturn($executable); |
| 39 | 39 | $repo->method('isPharRelease')->willReturn($isPhar); |
@@ -51,8 +51,8 @@ discard block |
||
| 51 | 51 | { |
| 52 | 52 | |
| 53 | 53 | $repo = $this->getMockBuilder(Repository::class) |
| 54 | - ->disableOriginalConstructor() |
|
| 55 | - ->getMock(); |
|
| 54 | + ->disableOriginalConstructor() |
|
| 55 | + ->getMock(); |
|
| 56 | 56 | |
| 57 | 57 | $repo->method('getRoot')->willReturn($root); |
| 58 | 58 | $repo->method('getHooksDir')->willReturn($root . '/.git/hooks'); |
@@ -70,8 +70,8 @@ discard block |
||
| 70 | 70 | public function createGitInfoOperator(string $tag = 'v1.0.0', string $branch = 'master'): Info |
| 71 | 71 | { |
| 72 | 72 | $operator = $this->getMockBuilder(Info::class) |
| 73 | - ->disableOriginalConstructor() |
|
| 74 | - ->getMock(); |
|
| 73 | + ->disableOriginalConstructor() |
|
| 74 | + ->getMock(); |
|
| 75 | 75 | |
| 76 | 76 | $operator->method('getCurrentTag')->willReturn($tag); |
| 77 | 77 | $operator->method('getCurrentBranch')->willReturn($branch); |
@@ -88,8 +88,8 @@ discard block |
||
| 88 | 88 | public function createGitDiffOperator(array $changedFiles = []): Diff |
| 89 | 89 | { |
| 90 | 90 | $operator = $this->getMockBuilder(Diff::class) |
| 91 | - ->disableOriginalConstructor() |
|
| 92 | - ->getMock(); |
|
| 91 | + ->disableOriginalConstructor() |
|
| 92 | + ->getMock(); |
|
| 93 | 93 | |
| 94 | 94 | $operator->method('getChangedFiles')->willReturn($changedFiles); |
| 95 | 95 | |
@@ -119,8 +119,8 @@ discard block |
||
| 119 | 119 | public function createGitIndexOperator(array $stagedFiles = []): Index |
| 120 | 120 | { |
| 121 | 121 | $operator = $this->getMockBuilder(Index::class) |
| 122 | - ->disableOriginalConstructor() |
|
| 123 | - ->getMock(); |
|
| 122 | + ->disableOriginalConstructor() |
|
| 123 | + ->getMock(); |
|
| 124 | 124 | |
| 125 | 125 | $operator->method('getStagedFiles')->willReturn($stagedFiles); |
| 126 | 126 | |
@@ -47,9 +47,9 @@ |
||
| 47 | 47 | { |
| 48 | 48 | parent::configure(); |
| 49 | 49 | $this->setName('hook:' . $this->hookName) |
| 50 | - ->setAliases([$this->hookName]) |
|
| 51 | - ->setDescription('Run git ' . $this->hookName . ' hook') |
|
| 52 | - ->setHelp('This command executes the ' . $this->hookName . ' hook'); |
|
| 50 | + ->setAliases([$this->hookName]) |
|
| 51 | + ->setDescription('Run git ' . $this->hookName . ' hook') |
|
| 52 | + ->setHelp('This command executes the ' . $this->hookName . ' hook'); |
|
| 53 | 53 | |
| 54 | 54 | $this->addOption( |
| 55 | 55 | 'bootstrap', |
@@ -36,10 +36,10 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | parent::configure(); |
| 38 | 38 | $this->setName('config:disable') |
| 39 | - ->setAliases(['disable']) |
|
| 40 | - ->setDescription('Disable the handling for a hook in your configuration') |
|
| 41 | - ->setHelp('Disable the handling for a hook in your configuration') |
|
| 42 | - ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to disable'); |
|
| 39 | + ->setAliases(['disable']) |
|
| 40 | + ->setDescription('Disable the handling for a hook in your configuration') |
|
| 41 | + ->setHelp('Disable the handling for a hook in your configuration') |
|
| 42 | + ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to disable'); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
@@ -58,8 +58,8 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | $editor = new Editor($io, $config); |
| 60 | 60 | $editor->setHook(IOUtil::argToString($input->getArgument('hook'))) |
| 61 | - ->setChange('DisableHook') |
|
| 62 | - ->run(); |
|
| 61 | + ->setChange('DisableHook') |
|
| 62 | + ->run(); |
|
| 63 | 63 | |
| 64 | 64 | return 0; |
| 65 | 65 | } |
@@ -36,10 +36,10 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | parent::configure(); |
| 38 | 38 | $this->setName('config:add') |
| 39 | - ->setAliases(['add']) |
|
| 40 | - ->setDescription('Add an action to your hook configuration') |
|
| 41 | - ->setHelp('Add an action to your hook configuration') |
|
| 42 | - ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to add the action to'); |
|
| 39 | + ->setAliases(['add']) |
|
| 40 | + ->setDescription('Add an action to your hook configuration') |
|
| 41 | + ->setHelp('Add an action to your hook configuration') |
|
| 42 | + ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to add the action to'); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
@@ -58,8 +58,8 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | $editor = new Editor($io, $config); |
| 60 | 60 | $editor->setHook(IOUtil::argToString($input->getArgument('hook'))) |
| 61 | - ->setChange('AddAction') |
|
| 62 | - ->run(); |
|
| 61 | + ->setChange('AddAction') |
|
| 62 | + ->run(); |
|
| 63 | 63 | |
| 64 | 64 | return 0; |
| 65 | 65 | } |
@@ -36,10 +36,10 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | parent::configure(); |
| 38 | 38 | $this->setName('config:enable') |
| 39 | - ->setAliases(['enable']) |
|
| 40 | - ->setDescription('Enable the handling for a hook in your configuration') |
|
| 41 | - ->setHelp('Enable the handling for a hook in your configuration') |
|
| 42 | - ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to enable'); |
|
| 39 | + ->setAliases(['enable']) |
|
| 40 | + ->setDescription('Enable the handling for a hook in your configuration') |
|
| 41 | + ->setHelp('Enable the handling for a hook in your configuration') |
|
| 42 | + ->addArgument('hook', InputArgument::REQUIRED, 'Hook you want to enable'); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
@@ -58,8 +58,8 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | $editor = new Editor($io, $config); |
| 60 | 60 | $editor->setHook(IOUtil::argToString($input->getArgument('hook'))) |
| 61 | - ->setChange('EnableHook') |
|
| 62 | - ->run(); |
|
| 61 | + ->setChange('EnableHook') |
|
| 62 | + ->run(); |
|
| 63 | 63 | |
| 64 | 64 | return 0; |
| 65 | 65 | } |
@@ -37,17 +37,17 @@ discard block |
||
| 37 | 37 | { |
| 38 | 38 | parent::configure(); |
| 39 | 39 | $this->setName('configure') |
| 40 | - ->setDescription('Create or update a captainhook.json configuration') |
|
| 41 | - ->setHelp('Create or update a captainhook.json configuration') |
|
| 42 | - ->addOption('extend', 'e', InputOption::VALUE_NONE, 'Extend existing configuration file') |
|
| 43 | - ->addOption('force', 'f', InputOption::VALUE_NONE, 'Overwrite existing configuration file') |
|
| 44 | - ->addOption('advanced', 'a', InputOption::VALUE_NONE, 'More options, but more to type') |
|
| 45 | - ->addOption( |
|
| 46 | - 'bootstrap', |
|
| 47 | - null, |
|
| 48 | - InputOption::VALUE_OPTIONAL, |
|
| 49 | - 'Path to composers vendor/autoload.php' |
|
| 50 | - ); |
|
| 40 | + ->setDescription('Create or update a captainhook.json configuration') |
|
| 41 | + ->setHelp('Create or update a captainhook.json configuration') |
|
| 42 | + ->addOption('extend', 'e', InputOption::VALUE_NONE, 'Extend existing configuration file') |
|
| 43 | + ->addOption('force', 'f', InputOption::VALUE_NONE, 'Overwrite existing configuration file') |
|
| 44 | + ->addOption('advanced', 'a', InputOption::VALUE_NONE, 'More options, but more to type') |
|
| 45 | + ->addOption( |
|
| 46 | + 'bootstrap', |
|
| 47 | + null, |
|
| 48 | + InputOption::VALUE_OPTIONAL, |
|
| 49 | + 'Path to composers vendor/autoload.php' |
|
| 50 | + ); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | /** |
@@ -65,10 +65,10 @@ discard block |
||
| 65 | 65 | |
| 66 | 66 | $configurator = new Creator($io, $config); |
| 67 | 67 | $configurator->force(IOUtil::argToBool($input->getOption('force'))) |
| 68 | - ->extend(IOUtil::argToBool($input->getOption('extend'))) |
|
| 69 | - ->advanced(IOUtil::argToBool($input->getOption('advanced'))) |
|
| 70 | - ->setExecutable($this->resolver->getExecutable()) |
|
| 71 | - ->run(); |
|
| 68 | + ->extend(IOUtil::argToBool($input->getOption('extend'))) |
|
| 69 | + ->advanced(IOUtil::argToBool($input->getOption('advanced'))) |
|
| 70 | + ->setExecutable($this->resolver->getExecutable()) |
|
| 71 | + ->run(); |
|
| 72 | 72 | return 0; |
| 73 | 73 | } |
| 74 | 74 | } |
@@ -109,10 +109,10 @@ |
||
| 109 | 109 | $options = substr($command, $endExec); |
| 110 | 110 | |
| 111 | 111 | $command = trim($executable) |
| 112 | - . $this->createInteractiveOptions($options) |
|
| 113 | - . $this->createTTYOptions($options) |
|
| 114 | - . $this->createEnvOptions($options, $hook) |
|
| 115 | - . ' ' . trim($options); |
|
| 112 | + . $this->createInteractiveOptions($options) |
|
| 113 | + . $this->createTTYOptions($options) |
|
| 114 | + . $this->createEnvOptions($options, $hook) |
|
| 115 | + . ' ' . trim($options); |
|
| 116 | 116 | } |
| 117 | 117 | return $command; |
| 118 | 118 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | parent::__construct(); |
| 32 | 32 | |
| 33 | 33 | $this->hint = 'A commit message subject should always complete the following sentence.' . PHP_EOL . |
| 34 | - 'This commit will [YOUR COMMIT MESSAGE].'; |
|
| 34 | + 'This commit will [YOUR COMMIT MESSAGE].'; |
|
| 35 | 35 | |
| 36 | 36 | $this->setSubjectBlacklist( |
| 37 | 37 | [ |
@@ -122,9 +122,9 @@ discard block |
||
| 122 | 122 | protected function errorDetails(string $file): string |
| 123 | 123 | { |
| 124 | 124 | return ' <comment>(' |
| 125 | - . $this->fileMatches[$file] . ' match' |
|
| 126 | - . ($this->fileMatches[$file] > 1 ? 'es' : '') |
|
| 127 | - . ')</comment>'; |
|
| 125 | + . $this->fileMatches[$file] . ' match' |
|
| 126 | + . ($this->fileMatches[$file] > 1 ? 'es' : '') |
|
| 127 | + . ')</comment>'; |
|
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | /** |
@@ -136,10 +136,10 @@ discard block |
||
| 136 | 136 | protected function errorMessage(int $filesFailed): string |
| 137 | 137 | { |
| 138 | 138 | return 'Regex \'' . $this->regexName . '\' failed: ' |
| 139 | - . 'found ' . $this->totalMatches . ' match' |
|
| 140 | - . ($this->totalMatches > 1 ? 'es' : '') |
|
| 141 | - . ' in ' . $filesFailed . ' file' |
|
| 142 | - . ($filesFailed > 1 ? 's' : '' ); |
|
| 139 | + . 'found ' . $this->totalMatches . ' match' |
|
| 140 | + . ($this->totalMatches > 1 ? 'es' : '') |
|
| 141 | + . ' in ' . $filesFailed . ' file' |
|
| 142 | + . ($filesFailed > 1 ? 's' : '' ); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | /** |