Passed
Push — master ( ed091c...555303 )
by Jakub
02:30
created
src/mytester.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
 $cmd = new Parser("", [
15 15
     "path" => [
16
-        Parser::Default => $vendorDirectory . "/../tests",
16
+        Parser::default => $vendorDirectory . "/../tests",
17 17
     ],
18 18
     "--colors" => [
19 19
         Parser::Optional => true,
Please login to merge, or discard this patch.
src/SkipChecker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     /**
50 50
      * Check whether to skip a test method
51 51
      */
52
-    public function shouldSkip(string $class, string $method): bool|string
52
+    public function shouldSkip(string $class, string $method): bool | string
53 53
     {
54 54
         $value = $this->getSkipValue($class, $method);
55 55
         if (is_scalar($value)) {
Please login to merge, or discard this patch.
src/Tester.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.