Completed
Push — master ( e50616...a5acb0 )
by Raffael
28:40 queued 24:37
created
src/lib/V8/Engine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
     protected function registerFunctions(): void
94 94
     {
95 95
         $this->crypt = [
96
-            'hash' => function ($algo, $data, $raw_output = false) {
96
+            'hash' => function($algo, $data, $raw_output = false) {
97 97
                 return hash($algo, $data, $raw_output);
98 98
             },
99 99
         ];
Please login to merge, or discard this patch.
src/lib/Rest/Helper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         $query = $request->getQueryParams();
74 74
         $options = isset($query['pretty']) ? JSON_PRETTY_PRINT : 0;
75 75
 
76
-        $stream = new StreamIterator($cursor, function ($resource) use ($request, $options) {
76
+        $stream = new StreamIterator($cursor, function($resource) use ($request, $options) {
77 77
             if ($this->tell() === 0) {
78 78
                 echo  '[';
79 79
             } else {
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         $query = $request->getQueryParams();
107 107
         $options = isset($query['pretty']) ? JSON_PRETTY_PRINT : 0;
108 108
 
109
-        $stream = new StreamIterator($cursor, function ($event) use ($request, $options) {
109
+        $stream = new StreamIterator($cursor, function($event) use ($request, $options) {
110 110
             if ($this->tell() === 0) {
111 111
                 echo  '[';
112 112
             } else {
Please login to merge, or discard this patch.
src/lib/Job.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
             'kind' => 'Job',
85 85
             'namespace' => $this->namespace->getName(),
86 86
             'data' => $this->getData(),
87
-            'status' => function () use ($resource, $scheduler) {
87
+            'status' => function() use ($resource, $scheduler) {
88 88
                 $process = iterator_to_array($scheduler->getJobs([
89 89
                     'data.job' => $resource->getName(),
90 90
                     'data.parent' => ['$exists' => false],
Please login to merge, or discard this patch.