Passed
Push — feature/php-8.5 ( 100e51...0b2a83 )
by Sebastian
08:55 queued 05:05
created
src/Hook/Message/Rule/Blacklist.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     {
55 55
         $this->isCaseSensitive = $caseSensitive;
56 56
         $this->hint            = 'Commit message should not contain blacklisted words';
57
-        $this->stringDetection = function (string $content, string $term): bool {
57
+        $this->stringDetection = function(string $content, string $term): bool {
58 58
             return strpos($content, $term) !== false;
59 59
         };
60 60
     }
Please login to merge, or discard this patch.
src/Hook/Composer/Action/CheckLockFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         }
113 113
         ksort($relevantContent);
114 114
 
115
-        return md5((string)json_encode($relevantContent));
115
+        return md5((string) json_encode($relevantContent));
116 116
     }
117 117
 
118 118
     /**
@@ -127,6 +127,6 @@  discard block
 block discarded – undo
127 127
         if (!file_exists($file)) {
128 128
             throw new Exception($file . ' not found');
129 129
         }
130
-        return (string)file_get_contents($file);
130
+        return (string) file_get_contents($file);
131 131
     }
132 132
 }
Please login to merge, or discard this patch.
src/Console/IO/DefaultIO.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
      */
91 91
     public function getArgument(string $name, string $default = ''): string
92 92
     {
93
-        return (string)($this->getArguments()[$name] ?? $default);
93
+        return (string) ($this->getArguments()[$name] ?? $default);
94 94
     }
95 95
 
96 96
     /**
Please login to merge, or discard this patch.
src/Hook/Message/Action/Beams.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Runner/Action/PHP.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
tests/unit/Config/Mockery.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
     public function createConfigMock(bool $loadedFromFile = false, string $path = ''): CHConfig
24 24
     {
25 25
         $config = $this->getMockBuilder(CHConfig::class)
26
-                       ->disableOriginalConstructor()
27
-                       ->getMock();
26
+                        ->disableOriginalConstructor()
27
+                        ->getMock();
28 28
 
29 29
         $config->method('isLoadedFromFile')->willReturn($loadedFromFile);
30 30
         $config->method('getPath')->willReturn($path);
Please login to merge, or discard this patch.
tests/unit/Console/IO/CollectorIOTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
         $this->assertTrue(
132 132
             $cio->askAndValidate(
133 133
                 'foo',
134
-                function () {
134
+                function() {
135 135
                     return true;
136 136
                 },
137 137
                 false,
Please login to merge, or discard this patch.
tests/unit/Console/IO/ComposerIOTest.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
     protected function setUp(): void
28 28
     {
29 29
         $mock = $this->getMockBuilder(IOInterface::class)
30
-                     ->disableOriginalConstructor()
31
-                     ->getMock();
30
+                        ->disableOriginalConstructor()
31
+                        ->getMock();
32 32
         $mock->method('isInteractive')->willReturn(false);
33 33
         $mock->method('isDebug')->willReturn(false);
34 34
         $mock->method('isVerbose')->willReturn(false);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
             true,
127 127
             $this->io->askAndValidate(
128 128
                 'foo',
129
-                function () {
129
+                function() {
130 130
                     return true;
131 131
                 },
132 132
                 null,
Please login to merge, or discard this patch.
tests/unit/Console/IO/NullIOTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
             true,
111 111
             $io->askAndValidate(
112 112
                 'foo',
113
-                function () {
113
+                function() {
114 114
                     return true;
115 115
                 },
116 116
                 false,
Please login to merge, or discard this patch.