Passed
Push — main ( bb3ddf...7b0feb )
by Sebastian
04:09 queued 37s
created
src/Console/Command/Hook.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,9 +47,9 @@
 block discarded – undo
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',
Please login to merge, or discard this patch.
src/Hook/Template/Docker.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -109,10 +109,10 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Hook/Message/Rule/UseImperativeMood.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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
             [
Please login to merge, or discard this patch.
src/Hook/File/Action/DoesNotContainRegex.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -122,9 +122,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
tests/unit/Runner/Hook/PreCommitTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -78,8 +78,8 @@  discard block
 block discarded – undo
78 78
 
79 79
         // every action has to get executed
80 80
         $actionConfigFail->expects($this->atLeastOnce())
81
-                         ->method('getAction')
82
-                         ->willReturn(CH_PATH_FILES . '/bin/failure');
81
+                            ->method('getAction')
82
+                            ->willReturn(CH_PATH_FILES . '/bin/failure');
83 83
 
84 84
         // so even if the first actions fails this action has to get executed
85 85
         $actionConfigSuccess->expects($this->atLeastOnce())
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
 
89 89
         $hookConfig->method('isEnabled')->willReturn(true);
90 90
         $hookConfig->expects($this->once())
91
-                   ->method('getActions')
92
-                   ->willReturn([$actionConfigFail, $actionConfigSuccess]);
91
+                    ->method('getActions')
92
+                    ->willReturn([$actionConfigFail, $actionConfigSuccess]);
93 93
 
94 94
         $config->expects($this->once())->method('getHookConfigToExecute')->willReturn($hookConfig);
95 95
         $config->method('isHookEnabled')->willReturn(true);
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
 
126 126
         $hookConfig->method('isEnabled')->willReturn(true);
127 127
         $hookConfig->expects($this->once())
128
-                   ->method('getActions')
129
-                   ->willReturn([$actionConfigFail, $actionConfigSuccess]);
128
+                    ->method('getActions')
129
+                    ->willReturn([$actionConfigFail, $actionConfigSuccess]);
130 130
 
131 131
         $config->expects($this->once())->method('getHookConfigToExecute')->willReturn($hookConfig);
132 132
         $config->expects($this->atLeastOnce())->method('isHookEnabled')->willReturn(true);
Please login to merge, or discard this patch.
tests/unit/Hook/Condition/FileChanged/OfTypeTest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
tests/unit/Runner/Action/Cli/Command/Placeholder/BranchFilesTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Hook/Template/Inspector.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
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
                 '',
Please login to merge, or discard this patch.
src/Console/Command/Uninstall.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -37,32 +37,32 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.