Test Failed
Push — main ( b4eeda...77f7c0 )
by Teodoro
04:22 queued 01:55
created
src/TaskInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      * @param callable $callback
42 42
      * @return mixed
43 43
      */
44
-    public function catch(callable $callback): self;
44
+    public function catch (callable $callback): self;
45 45
 
46 46
     /**
47 47
      * @return $this
Please login to merge, or discard this patch.
src/Async.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@
 block discarded – undo
56 56
     protected function listener(): void
57 57
     {
58 58
         pcntl_async_signals(true);
59
-        pcntl_signal(SIGCHLD, function ($signo, $status) {
59
+        pcntl_signal(SIGCHLD, function($signo, $status) {
60 60
             while (true) {
61
-                $pid = pcntl_waitpid(-1, $processState, WNOHANG | WUNTRACED);
61
+                $pid = pcntl_waitpid(-1, $processState, WNOHANG|WUNTRACED);
62 62
                 if ($pid <= 0) {
63 63
                     break;
64 64
                 }
Please login to merge, or discard this patch.
src/TaskFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
             __DIR__ . '/../../../' . $file,
46 46
             __DIR__ . '/../../' . $file,
47 47
             __DIR__ . '/../' . $file,
48
-        ], static function (string $path) {
48
+        ], static function(string $path) {
49 49
             return file_exists($path);
50 50
         });
51 51
 
Please login to merge, or discard this patch.
tests/ChildTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function handle(): void
36 36
     {
37
-        $closure = function () {
37
+        $closure = function() {
38 38
             return 33;
39 39
         };
40 40
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function handleException(): void
56 56
     {
57
-        $closure = function () {
57
+        $closure = function() {
58 58
             throw new \Exception('Test message');
59 59
         };
60 60
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public function write(): void
76 76
     {
77
-        $closure = function () {
77
+        $closure = function() {
78 78
             return 'Same return value';
79 79
         };
80 80
 
Please login to merge, or discard this patch.
src/Task.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
      * @param callable $callback
64 64
      * @return $this
65 65
      */
66
-    public function catch(callable $callback): self
66
+    public function catch (callable $callback): self
67 67
     {
68 68
         $this->error[] = $callback;
69 69
 
Please login to merge, or discard this patch.
tests/AsyncTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -28,12 +28,12 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function add(): void
30 30
     {
31
-        $this->async->add(static function () {
31
+        $this->async->add(static function() {
32 32
             usleep(8000);
33 33
 
34 34
             return 555;
35 35
         });
36
-        $this->async->add(static function () {
36
+        $this->async->add(static function() {
37 37
             return 2;
38 38
         });
39 39
 
@@ -48,9 +48,9 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function then(): void
50 50
     {
51
-        $this->async->add(static function () {
51
+        $this->async->add(static function() {
52 52
             return 555;
53
-        })->then(static function (int $value) {
53
+        })->then(static function(int $value) {
54 54
             static::assertEquals(555, $value);
55 55
         });
56 56
 
@@ -63,9 +63,9 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function failed(): void
65 65
     {
66
-        $this->async->add(static function () {
66
+        $this->async->add(static function() {
67 67
             throw new Exception('Test message');
68
-        })->catch(function ($exception) {
68
+        })->catch(function($exception) {
69 69
             static::assertStringContainsString('Test message', $exception->getMessage());
70 70
         });
71 71
 
Please login to merge, or discard this patch.