Completed
Push — master ( abe227...316baf )
by Raffael
13:55 queued 08:01
created
src/lib/DataObjectRelation.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     {
43 43
         $resource = [
44 44
             '_links' => [
45
-                 'self' => ['href' => (string) $request->getUri()],
45
+                    'self' => ['href' => (string) $request->getUri()],
46 46
             ],
47 47
             'kind' => 'DataObjectRelation',
48 48
             'namespace' => $this->resource['namespace'],
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         $object = $this->object;
53 53
 
54 54
         if ($object !== null) {
55
-            $resource['status']['object'] = function () use ($object, $request) {
55
+            $resource['status']['object'] = function() use ($object, $request) {
56 56
                 return $object->decorate($request);
57 57
             };
58 58
         }
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
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
             'kind' => 'Job',
84 84
             'namespace' => $this->namespace->getName(),
85 85
             'data' => $this->getData(),
86
-            'status' => function () use ($resource, $scheduler) {
86
+            'status' => function() use ($resource, $scheduler) {
87 87
                 $process = iterator_to_array($scheduler->getJobs([
88 88
                     'data.job' => $resource->getId(),
89 89
                 ]));
Please login to merge, or discard this patch.
src/httpdocs/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 $request = Zend\Diactoros\ServerRequestFactory::fromGlobals();
32 32
 $logger = $dic->get(Psr\Log\LoggerInterface::class);
33 33
 
34
-set_exception_handler(function ($e) use ($logger) {
34
+set_exception_handler(function($e) use ($logger) {
35 35
     http_response_code(500);
36 36
     $logger->emergency('uncaught exception: '.$e->getMessage(), [
37 37
         'category' => 'Http',
Please login to merge, or discard this patch.