Completed
Push — master ( a8d177...c0d232 )
by Olivier
21:08 queued 12:47
created
lib/Query/Joining/NestedQuery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,10 +72,10 @@
 block discarded – undo
72 72
 	 */
73 73
 	public function jsonSerialize()
74 74
 	{
75
-		return [ self::NAME => [
75
+		return [self::NAME => [
76 76
 
77 77
 			'path' => $this->path,
78 78
 
79
-		] + parent::jsonSerialize() + $this->query->jsonSerialize() ];
79
+		] + parent::jsonSerialize() + $this->query->jsonSerialize()];
80 80
 	}
81 81
 }
Please login to merge, or discard this patch.
lib/Query.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@
 block discarded – undo
29 29
 	 */
30 30
 	public function jsonSerialize()
31 31
 	{
32
-		return [ self::NAME => Helpers::merge_and_prefer_single(
32
+		return [self::NAME => Helpers::merge_and_prefer_single(
33 33
 			$this->jsonSerializeCompoundQueries(),
34 34
 			$this->jsonSerializeTextQueries(),
35 35
 			$this->jsonSerializeJoiningQueries()
36
-		) ];
36
+		)];
37 37
 	}
38 38
 
39 39
 	public function to_array(): array
Please login to merge, or discard this patch.