Passed
Push — php81 ( 165b0c...5beee4 )
by Jakub
02:44
created
src/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
     /**
110 110
      * Get name for a job
111 111
      */
112
-    protected function getJobName(string|object $class, string $method): string
112
+    protected function getJobName(string | object $class, string $method): string
113 113
     {
114 114
         $annotation = $this->annotationsReader->getAnnotation(static::ANNOTATION_TEST, $class, $method);
115 115
         if ($annotation !== null) {
Please login to merge, or discard this patch.
src/Job.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     protected $callback;
23 23
     public readonly array $params;
24 24
     // phpcs:ignore
25
-    public readonly bool|string $skip;
25
+    public readonly bool | string $skip;
26 26
     protected JobResult $result = JobResult::PASSED;
27 27
     protected string $output = "";
28 28
     /** @var callable[] */
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         string $name,
33 33
         callable $callback,
34 34
         array $params = [],
35
-        bool|string $skip = false,
35
+        bool | string $skip = false,
36 36
         array $onAfterExecute = []
37 37
     ) {
38 38
         $this->name = $name;
Please login to merge, or discard this patch.