@@ -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, |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | $config->expects($this->exactly(7))->method('getHookConfig')->willReturn($this->createHookConfigMock()); |
| 35 | 35 | $io->method('ask')->will($this->onConsecutiveCalls('y', 'y', 'echo \'foo\'', 'n')); |
| 36 | 36 | |
| 37 | - $setup = new Advanced($io); |
|
| 37 | + $setup = new Advanced($io); |
|
| 38 | 38 | $setup->configureHooks($config); |
| 39 | 39 | } |
| 40 | 40 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | $io->method('ask')->will($this->onConsecutiveCalls('y', 'y', '\\Foo\\Bar', 'y', 'n')); |
| 52 | 52 | $io->expects($this->once())->method('askAndValidate')->willReturn('foo:bar'); |
| 53 | 53 | |
| 54 | - $setup = new Advanced($io); |
|
| 54 | + $setup = new Advanced($io); |
|
| 55 | 55 | $setup->configureHooks($config); |
| 56 | 56 | } |
| 57 | 57 | } |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | $config->expects($this->exactly(2))->method('getHookConfig')->willReturn($this->createHookConfigMock()); |
| 35 | 35 | $io->method('ask')->will($this->onConsecutiveCalls('y', 'y', 'y', 'phpunit', 'y', 'phpcs')); |
| 36 | 36 | |
| 37 | - $setup = new Express($io); |
|
| 37 | + $setup = new Express($io); |
|
| 38 | 38 | $setup->configureHooks($config); |
| 39 | 39 | } |
| 40 | 40 | } |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | $this->expectException(Exception::class); |
| 25 | 25 | |
| 26 | 26 | $path = realpath(CH_PATH_FILES . '/storage/invalid-xml.txt'); |
| 27 | - $file = new Xml($path); |
|
| 27 | + $file = new Xml($path); |
|
| 28 | 28 | $file->read(); |
| 29 | 29 | } |
| 30 | 30 | } |
@@ -43,8 +43,8 @@ |
||
| 43 | 43 | $options = $action->getOptions(); |
| 44 | 44 | $book = new RuleBook(); |
| 45 | 45 | $book->setRules(RuleBook\RuleSet::beams( |
| 46 | - (int) $options->get('subjectLength', 50), |
|
| 47 | - (int) $options->get('bodyLineLength', 72), |
|
| 46 | + (int) $options->get('subjectLength', 50), |
|
| 47 | + (int) $options->get('bodyLineLength', 72), |
|
| 48 | 48 | (bool) $options->get('checkImperativeBeginningOnly', false) |
| 49 | 49 | )); |
| 50 | 50 | |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | ] |
| 40 | 40 | ); |
| 41 | 41 | |
| 42 | - $install = new Disable($resolver); |
|
| 42 | + $install = new Disable($resolver); |
|
| 43 | 43 | $install->setIO(new NullIO()); |
| 44 | 44 | $install->run($input, $output); |
| 45 | 45 | } |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | null, |
| 56 | 56 | ['captainhook.json' => file_get_contents(CH_PATH_FILES . '/config/valid.json')] |
| 57 | 57 | ); |
| 58 | - $input = new ArrayInput([ |
|
| 58 | + $input = new ArrayInput([ |
|
| 59 | 59 | 'hook' => 'pre-push', |
| 60 | 60 | '--configuration' => $fakeConfig->url() . '/captainhook.json', |
| 61 | 61 | ]); |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | } |
| 106 | 106 | ob_start(); |
| 107 | 107 | $class::$method(); |
| 108 | - return (string)ob_get_clean(); |
|
| 108 | + return (string) ob_get_clean(); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | */ |
| 135 | 135 | private function isStaticMethodCall(string $class): bool |
| 136 | 136 | { |
| 137 | - return (bool)preg_match('#^\\\\.+::.+$#i', $class); |
|
| 137 | + return (bool) preg_match('#^\\\\.+::.+$#i', $class); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |
@@ -175,7 +175,7 @@ |
||
| 175 | 175 | // callback to write bool true to all array entries |
| 176 | 176 | // to make sure the user will be asked to confirm every hook installation |
| 177 | 177 | // unless the user provided the force or skip option |
| 178 | - $callback = function () { |
|
| 178 | + $callback = function() { |
|
| 179 | 179 | return true; |
| 180 | 180 | }; |
| 181 | 181 | // if a specific hook is set the user chose it so don't ask for permission anymore |