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