Test Setup Failed
Push — master ( a98d4b...a0c0ad )
by
unknown
05:56 queued 04:51
created
src/lib/ResourceNamespace.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
      * {@inheritdoc}
111 111
      */
112
-    public function switch(string $name): ResourceNamespaceInterface
112
+    public function switch (string $name): ResourceNamespaceInterface
113 113
     {
114 114
         return $this->namespace_factory->getOne($name);
115 115
     }
Please login to merge, or discard this patch.
src/lib/Collection.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
             'data' => [
145 145
                 'schema' => $this->schema->getSchema(),
146 146
             ],
147
-       ];
147
+        ];
148 148
 
149 149
         return AttributeResolver::resolve($request, $this, $resource);
150 150
     }
Please login to merge, or discard this patch.
src/lib/AttributeMap.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
         if ($attrv === null || is_string($attrv) && strlen($attrv) === 0 || is_array($attrv) && count($attrv) === 0) {
201 201
             if (isset($value['required']) && $value['required'] === false || !isset($value['required'])) {
202 202
                 $this->logger->debug('found attribute ['.$attr.'] but source attribute is empty, remove attribute from mapping', [
203
-                     'category' => get_class($this),
203
+                        'category' => get_class($this),
204 204
                 ]);
205 205
 
206 206
                 return null;
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
         }
289 289
 
290 290
         $this->logger->debug('resolved value for attribute ['.$attribute.'] is an array but is not declared as an array, use first array element instead', [
291
-             'category' => get_class($this),
291
+                'category' => get_class($this),
292 292
         ]);
293 293
 
294 294
         return current($value);
Please login to merge, or discard this patch.
src/lib/DataObjectRelation.php 1 patch
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.
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.
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/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.
src/lib/Workflow.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
                 'namespace' => ['href' => (string) $request->getUri()->withPath('/api/v1/namespaces/'.$namespace)],
122 122
                 'collection' => ['href' => (string) $request->getUri()->withPath('/api/v1/namespaces/'.$namespace.'/collections/'.$collection)],
123 123
                 'endpoint' => ['href' => (string) $request->getUri()->withPath('/api/v1/namespaces/'.$namespace.'/collections/'.$collection.'/endpoints/'.$endpoint)],
124
-           ],
124
+            ],
125 125
             'namespace' => $namespace,
126 126
             'collection' => $collection,
127 127
             'endpoint' => $endpoint,
Please login to merge, or discard this patch.
src/lib/User/Factory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     {
102 102
         $that = $this;
103 103
 
104
-        return $this->resource_factory->getAllFrom($this->db->{self::COLLECTION_NAME}, $query, $offset, $limit, $sort, function (array $resource) use ($that) {
104
+        return $this->resource_factory->getAllFrom($this->db->{self::COLLECTION_NAME}, $query, $offset, $limit, $sort, function(array $resource) use ($that) {
105 105
             return $that->build($resource);
106 106
         });
107 107
     }
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     {
174 174
         $that = $this;
175 175
 
176
-        return $this->resource_factory->watchFrom($this->db->{self::COLLECTION_NAME}, $after, $existing, $query, function (array $resource) use ($that) {
176
+        return $this->resource_factory->watchFrom($this->db->{self::COLLECTION_NAME}, $after, $existing, $query, function(array $resource) use ($that) {
177 177
             return $that->build($resource);
178 178
         }, $offset, $limit, $sort);
179 179
     }
Please login to merge, or discard this patch.