Passed
Pull Request — main (#241)
by
unknown
03:48
created
src/Console/Command/Configuration.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -37,17 +37,17 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Runner/Files.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         $hooks = explode(',', $hook);
90 90
         $hooks = array_map('trim', $hooks);
91 91
 
92
-        $hooksValidationCallback = static function (string $hook): bool {
92
+        $hooksValidationCallback = static function(string $hook): bool {
93 93
             return !HookUtil::isInstallable($hook);
94 94
         };
95 95
         if (!empty(($invalidHooks = array_filter($hooks, $hooksValidationCallback)))) {
Please login to merge, or discard this patch.
src/Hook/Template/Docker.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
             $executable = substr($command, 0, $endExec);
109 109
             $options    = substr($command, $endExec);
110 110
 
111
-            $command     = trim($executable)
111
+            $command = trim($executable)
112 112
                          . $this->createInteractiveOptions($options)
113 113
                          . $this->createTTYOptions($options)
114 114
                          . $this->createEnvOptions($options, $hook)
Please login to merge, or discard this patch.
src/Hook/Util.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
             $info = explode(' ', $stdIn[0]);
104 104
             // If we find a rewritten commit, we return the first commit before the rewritten one.
105 105
             // If we do not find any rewritten commits (awkward) we use the last ref-log position.
106
-            return isset($info[1]) ? trim($info[1]) . '^' :  'HEAD@{1}';
106
+            return isset($info[1]) ? trim($info[1]) . '^' : 'HEAD@{1}';
107 107
         }
108 108
 
109 109
         return $io->getArgument(Hooks::ARG_PREVIOUS_HEAD, 'HEAD@{1}');
Please login to merge, or discard this patch.
src/Hook/PHP/CoverageResolver/CloverXML.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,6 +77,6 @@
 block discarded – undo
77 77
             );
78 78
         }
79 79
 
80
-        return $covered / ((int)$statements * 0.01);
80
+        return $covered / ((int) $statements * 0.01);
81 81
     }
82 82
 }
Please login to merge, or discard this patch.
src/Hook/Message/Rule/UseImperativeMood.php 2 patches
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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     {
31 31
         parent::__construct();
32 32
 
33
-        $this->hint = 'A commit message subject should always complete the following sentence.'  . PHP_EOL .
33
+        $this->hint = 'A commit message subject should always complete the following sentence.' . PHP_EOL .
34 34
                       'This commit will [YOUR COMMIT MESSAGE].';
35 35
 
36 36
         $this->setSubjectBlacklist(
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
         if ($checkOnlyBeginning) {
51 51
             // overwrite the detection logic to only check the beginning og the string
52
-            $this->stringDetection = function (string $content, string $term): bool {
52
+            $this->stringDetection = function(string $content, string $term): bool {
53 53
                 return strpos($content, $term) === 0;
54 54
             };
55 55
         }
Please login to merge, or discard this patch.
src/Hook/Message/Action/PrepareFromFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
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
             );
Please login to merge, or discard this patch.
src/Hook/Condition/FileStaged/ThatIs.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Hook/Condition/Logic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.