Passed
Push — master ( 3896ee...e50616 )
by Raffael
05:45
created
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.
src/lib/Secret.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
             'kind' => 'Secret',
48 48
             'namespace' => $this->namespace->getName(),
49 49
             'data' => $this->getData(),
50
-       ];
50
+        ];
51 51
 
52 52
         return AttributeResolver::resolve($request, $this, $resource);
53 53
     }
Please login to merge, or discard this patch.