Passed
Push — main ( 36f773...e1b064 )
by Sebastian
03:34
created
src/Hooks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
         return array_keys(
121 121
             array_filter(
122 122
                 self::$virtualHookTriggers,
123
-                function ($e) use ($virtualHook) {
123
+                function($e) use ($virtualHook) {
124 124
                     return $e === $virtualHook;
125 125
                 }
126 126
             )
Please login to merge, or discard this patch.
src/Console/IO/Message.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @var string|array<string>
28 28
      */
29
-    private string|array $message;
29
+    private string | array $message;
30 30
 
31 31
     /**
32 32
      * Should message be ended with a new line character
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @param bool                 $newLine
50 50
      * @param int                  $verbosity
51 51
      */
52
-    public function __construct(string|array $message, bool $newLine, int $verbosity)
52
+    public function __construct(string | array $message, bool $newLine, int $verbosity)
53 53
     {
54 54
         $this->message   = $message;
55 55
         $this->newLine   = $newLine;
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      *
62 62
      * @return string|array<string>
63 63
      */
64
-    public function message(): string|array
64
+    public function message(): string | array
65 65
     {
66 66
         return $this->message;
67 67
     }
Please login to merge, or discard this patch.
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/Console/Command/Disable.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Console/Command/Add.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Console/Command/Enable.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
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/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.