Passed
Push — master ( 7dd677...d26f0a )
by Radu
07:58
created
src/WebServCo/Api/JsonApi/Interfaces/ResourceObjectInterface.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -7,34 +7,34 @@
 block discarded – undo
7 7
 interface ResourceObjectInterface
8 8
 {
9 9
     /**
10
-    * @return array<string,int|string>|string
11
-    */
10
+     * @return array<string,int|string>|string
11
+     */
12 12
     public function getAttribute(string $key);
13 13
 
14 14
     public function getId(): string;
15 15
 
16 16
     /**
17
-    * @return int|string
18
-    */
17
+     * @return int|string
18
+     */
19 19
     public function getMeta(string $key);
20 20
 
21 21
     public function setId(string $id): bool;
22 22
 
23 23
     /**
24
-    * @param mixed $value
25
-    */
24
+     * @param mixed $value
25
+     */
26 26
     public function setAttribute(string $key, $value): bool;
27 27
 
28 28
     public function setLink(string $key, string $value): bool;
29 29
 
30 30
     /**
31
-    * @param mixed $value
32
-    */
31
+     * @param mixed $value
32
+     */
33 33
     public function setMeta(string $key, $value): bool;
34 34
 
35 35
     /**
36
-    * @return array<string,mixed>
37
-    */
36
+     * @return array<string,mixed>
37
+     */
38 38
     public function toArray(): array;
39 39
 
40 40
     public function toJson(int $flags = 0): string;
Please login to merge, or discard this patch.