Completed
Push — master ( e9a4c1...1f7593 )
by Raffael
09:08 queued 01:05
created
src/lib/Endpoint/AbstractEndpoint.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
             '_links' => [
186 186
                 'namespace' => ['href' => (string) $request->getUri()->withPath('/api/v1/namespaces/'.$namespace)],
187 187
                 'collection' => ['href' => (string) $request->getUri()->withPath('/api/v1/namespaces/'.$namespace.'/collections/'.$collection)],
188
-           ],
188
+            ],
189 189
             'kind' => static::KIND,
190 190
             'namespace' => $namespace,
191 191
             'collection' => $collection,
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
             'namespace' => $namespace,
179 179
             'collection' => $collection,
180 180
             'data' => $this->getData(),
181
-            'status' => function ($endpoint) {
181
+            'status' => function($endpoint) {
182 182
                 try {
183 183
                     $endpoint->setup();
184 184
 
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
      */
335 335
     private function parseAttribute(string $string, array $data): string
336 336
     {
337
-        return preg_replace_callback('/(\{(([^\}\{\"]*)+)\})/', function ($match) use ($string, $data) {
337
+        return preg_replace_callback('/(\{(([^\}\{\"]*)+)\})/', function($match) use ($string, $data) {
338 338
             if (substr($match[0], 0, 2) === '{{' && $match[4][0] === '}') {
339 339
                 return $match[2].$match[4];
340 340
             }
Please login to merge, or discard this patch.
src/lib/DataObject.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
             'namespace' => $namespace,
64 64
             'collection' => $collection,
65 65
             'data' => $this->getData(),
66
-            'status' => function ($object) {
66
+            'status' => function($object) {
67 67
                 $endpoints = $object->getEndpoints();
68 68
                 foreach ($endpoints as &$endpoint) {
69 69
                     $endpoint['last_sync'] = $endpoint['last_sync']->toDateTime()->format('c');
Please login to merge, or discard this patch.
src/lib/ResourceNamespace/ResourceNamespaceInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,5 +46,5 @@
 block discarded – undo
46 46
     /**
47 47
      * Switch namespace.
48 48
      */
49
-    public function switch(string $name): ResourceNamespaceInterface;
49
+    public function switch (string $name): ResourceNamespaceInterface;
50 50
 }
Please login to merge, or discard this patch.
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/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/Log/Factory.php 2 patches
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -52,6 +52,8 @@
 block discarded – undo
52 52
 
53 53
     /**
54 54
      * watch all.
55
+     * @param integer $offset
56
+     * @param integer $limit
55 57
      */
56 58
     public function watch(?ObjectIdInterface $after = null, bool $existing = true, ?array $query = null, ?int $offset = null, ?int $limit = null, ?array $sort = null): Generator
57 59
     {
Please login to merge, or discard this 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.
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.