Passed
Pull Request — master (#99)
by Sebastian
01:56
created
src/Console/Command/Hook.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
     {
47 47
         parent::configure();
48 48
         $this->setName('hook:' . $this->hookName)
49
-             ->setDescription('Run git ' . $this->hookName . ' hook.')
50
-             ->setHelp('This command executes the ' . $this->hookName . ' hook.');
49
+                ->setDescription('Run git ' . $this->hookName . ' hook.')
50
+                ->setHelp('This command executes the ' . $this->hookName . ' hook.');
51 51
 
52 52
         $this->addOption(
53 53
             'bootstrap',
@@ -120,10 +120,10 @@  discard block
 block discarded – undo
120 120
     private function handleError(OutputInterface $output, Exception $e): int
121 121
     {
122 122
         $error = IOUtil::$tplError
123
-               . PHP_EOL . IOUtil::getLineSeparator() . PHP_EOL
124
-               . IOUtil::formatHeadline(get_class($e), 80, '>', '<') . PHP_EOL
125
-               . IOUtil::getLineSeparator() . PHP_EOL
126
-               . $e->getMessage()  . PHP_EOL;
123
+                . PHP_EOL . IOUtil::getLineSeparator() . PHP_EOL
124
+                . IOUtil::formatHeadline(get_class($e), 80, '>', '<') . PHP_EOL
125
+                . IOUtil::getLineSeparator() . PHP_EOL
126
+                . $e->getMessage()  . PHP_EOL;
127 127
 
128 128
         $output->writeLn($error);
129 129
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
                . PHP_EOL . IOUtil::getLineSeparator() . PHP_EOL
124 124
                . IOUtil::formatHeadline(get_class($e), 80, '>', '<') . PHP_EOL
125 125
                . IOUtil::getLineSeparator() . PHP_EOL
126
-               . $e->getMessage()  . PHP_EOL;
126
+               . $e->getMessage() . PHP_EOL;
127 127
 
128 128
         $output->writeLn($error);
129 129
 
Please login to merge, or discard this patch.