Test Failed
Push — master ( 7dbd0b...8a1129 )
by Jakub
12:04
created
src/TestCase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      *
102 102
      * @internal
103 103
      */
104
-    public function getSuiteName(string|object|null $class = null): string
104
+    public function getSuiteName(string | object | null $class = null): string
105 105
     {
106 106
         $class = $class ?? static::class;
107 107
         $annotation = $this->annotationsReader->getAnnotation(static::ANNOTATION_TEST_SUITE, $class);
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     /**
115 115
      * Get name for a job
116 116
      */
117
-    protected function getJobName(string|object $class, string $method): string
117
+    protected function getJobName(string | object $class, string $method): string
118 118
     {
119 119
         $annotation = $this->annotationsReader->getAnnotation(static::ANNOTATION_TEST, $class, $method);
120 120
         if ($annotation !== null) {
Please login to merge, or discard this patch.
src/ResultsFormatters/Console.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,8 @@
 block discarded – undo
137 137
         foreach ($files as $name => $file) {
138 138
             try {
139 139
                 FileSystem::delete($name);
140
-            } catch (IOException) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement
140
+            } catch (IOException) {
141
+// phpcs:ignore Generic.CodeAnalysis.EmptyStatement
141 142
             }
142 143
         }
143 144
     }
Please login to merge, or discard this patch.