Completed
Pull Request — master (#20)
by
unknown
08:01
created
src/Client/Product/LibraryBuilder.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
 
28 28
         return new Library(
29 29
             ( $data['fromEventLogUuid']
30
-			   		? Uuid::fromString($data['fromEventLogUuid'])
31
-			   				: Uuid::fromInteger(0) ),
30
+                       ? Uuid::fromString($data['fromEventLogUuid'])
31
+                               : Uuid::fromInteger(0) ),
32 32
             Uuid::fromString($data['untilEventLogUuid']),
33 33
             $this->productBuilder->buildFromArray($data['products']),
34 34
             $this->discountBuilder->buildFromArray($data['discounts']),
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
         $data = json_decode($json, true);
27 27
 
28 28
         return new Library(
29
-            ( $data['fromEventLogUuid']
29
+            ($data['fromEventLogUuid']
30 30
 			   		? Uuid::fromString($data['fromEventLogUuid'])
31
-			   				: Uuid::fromInteger(0) ),
31
+			   				: Uuid::fromInteger(0)),
32 32
             Uuid::fromString($data['untilEventLogUuid']),
33 33
             $this->productBuilder->buildFromArray($data['products']),
34 34
             $this->discountBuilder->buildFromArray($data['discounts']),
Please login to merge, or discard this patch.