Passed
Push — main ( 03267e...ead171 )
by Sebastian
01:10 queued 18s
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/Plugin/Hook/PreserveWorkingTreeTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
         $this->statusOperator
202 202
             ->expects($this->once())
203 203
             ->method('restoreWorkingTree')
204
-            ->will($this->returnCallback(function (): bool {
204
+            ->will($this->returnCallback(function(): bool {
205 205
                 if (getenv(PreserveWorkingTree::SKIP_POST_CHECKOUT_VAR) != '1') {
206 206
                     $this->fail(PreserveWorkingTree::SKIP_POST_CHECKOUT_VAR . ' did not have the correct value');
207 207
                 }
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
         $this->diffOperator
212 212
             ->expects($this->once())
213 213
             ->method('applyPatches')
214
-            ->with($this->callback(function ($value) use ($patchFileConstraint): bool {
214
+            ->with($this->callback(function($value) use ($patchFileConstraint): bool {
215 215
                 $result = true;
216 216
                 foreach ($value as $item) {
217 217
                     $result = $result && $patchFileConstraint->evaluate($item, '', true);
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
         $this->diffOperator
267 267
             ->expects($this->exactly(3))
268 268
             ->method('applyPatches')
269
-            ->with($this->callback(function ($value) use ($patchFileConstraint): bool {
269
+            ->with($this->callback(function($value) use ($patchFileConstraint): bool {
270 270
                 $result = true;
271 271
                 foreach ($value as $item) {
272 272
                     $result = $result && $patchFileConstraint->evaluate($item, '', true);
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/IOUtilTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      */
64 64
     public function testFormatHeadlineShort(): void
65 65
     {
66
-        $text     = str_repeat('x', 70) ;
66
+        $text     = str_repeat('x', 70);
67 67
         $expected = '==== ' . $text . ' ====';
68 68
         $headline = IOUtil::formatHeadline($text, 80);
69 69
 
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.