@@ -21,7 +21,7 @@ |
||
21 | 21 | } |
22 | 22 | |
23 | 23 | $precision = 0; |
24 | - return new Price((int) round($value * 100, $precision)); |
|
24 | + return new Price((int)round($value * 100, $precision)); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
@@ -25,7 +25,7 @@ |
||
25 | 25 | public function getCdbId($externalId) |
26 | 26 | { |
27 | 27 | if (isset($this->externalIdMapping[$externalId])) { |
28 | - return (string) $this->externalIdMapping[$externalId]; |
|
28 | + return (string)$this->externalIdMapping[$externalId]; |
|
29 | 29 | } else { |
30 | 30 | return null; |
31 | 31 | } |
@@ -12,7 +12,7 @@ |
||
12 | 12 | { |
13 | 13 | if (!is_string($string)) { |
14 | 14 | throw new \InvalidArgumentException( |
15 | - 'Argument should be string, got ' . gettype($string) . ' instead.' |
|
15 | + 'Argument should be string, got '.gettype($string).' instead.' |
|
16 | 16 | ); |
17 | 17 | } |
18 | 18 |
@@ -36,9 +36,9 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public function serialize() |
38 | 38 | { |
39 | - $serializedData = parent::serialize() + array( |
|
39 | + $serializedData = parent::serialize() + array( |
|
40 | 40 | 'images' => array_map( |
41 | - function (Image $image) { |
|
41 | + function(Image $image) { |
|
42 | 42 | return $image->serialize(); |
43 | 43 | }, |
44 | 44 | $this->images->toArray() |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | { |
62 | 62 | $images = ImageCollection::fromArray( |
63 | 63 | array_map( |
64 | - function ($imageData) { |
|
64 | + function($imageData) { |
|
65 | 65 | return Image::deserialize($imageData); |
66 | 66 | }, |
67 | 67 | $data['images'] |
@@ -30,11 +30,11 @@ |
||
30 | 30 | $typeSupported = array_key_exists($subtypeString, self::$supportedSubtypes); |
31 | 31 | |
32 | 32 | if (!$typeSupported) { |
33 | - throw new UnsupportedMIMETypeException('MIME type "' . $subtypeString . '" is not supported!'); |
|
33 | + throw new UnsupportedMIMETypeException('MIME type "'.$subtypeString.'" is not supported!'); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | $type = self::$supportedSubtypes[$subtypeString]; |
37 | 37 | |
38 | - return new static($type . '/' . $subtypeString); |
|
38 | + return new static($type.'/'.$subtypeString); |
|
39 | 39 | } |
40 | 40 | } |
@@ -18,8 +18,8 @@ |
||
18 | 18 | */ |
19 | 19 | public function __construct($id, $iri) |
20 | 20 | { |
21 | - $this->id = (string) $id; |
|
22 | - $this->iri = (string) $iri; |
|
21 | + $this->id = (string)$id; |
|
22 | + $this->iri = (string)$iri; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $this->payloadSerializer = $payloadSerializer; |
71 | 71 | $this->metadataSerializer = $metadataSerializer; |
72 | 72 | $this->tableName = $tableName; |
73 | - $this->aggregateType = (string) $aggregateType; |
|
73 | + $this->aggregateType = (string)$aggregateType; |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $this->guardStream($eventStream); |
106 | 106 | |
107 | 107 | // Make the transaction more robust by using the transactional statement. |
108 | - $this->connection->transactional(function (Connection $connection) use ($eventStream) { |
|
108 | + $this->connection->transactional(function(Connection $connection) use ($eventStream) { |
|
109 | 109 | try { |
110 | 110 | foreach ($eventStream as $domainMessage) { |
111 | 111 | $this->insertMessage($connection, $domainMessage); |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | private function insertMessage(Connection $connection, DomainMessage $domainMessage) |
124 | 124 | { |
125 | 125 | $data = array( |
126 | - 'uuid' => (string) $domainMessage->getId(), |
|
126 | + 'uuid' => (string)$domainMessage->getId(), |
|
127 | 127 | 'playhead' => $domainMessage->getPlayhead(), |
128 | 128 | 'metadata' => json_encode($this->metadataSerializer->serialize($domainMessage->getMetadata())), |
129 | 129 | 'payload' => json_encode($this->payloadSerializer->serialize($domainMessage->getPayload())), |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | { |
229 | 229 | foreach ($eventStream as $domainMessage) { |
230 | 230 | /** @var DomainMessage $domainMessage */ |
231 | - $id = (string) $domainMessage->getId(); |
|
231 | + $id = (string)$domainMessage->getId(); |
|
232 | 232 | } |
233 | 233 | } |
234 | 234 | } |
@@ -108,7 +108,7 @@ |
||
108 | 108 | throw new RuntimeException(); |
109 | 109 | } |
110 | 110 | |
111 | - return [ $priceName => floatval($priceValue) ]; |
|
111 | + return [$priceName => floatval($priceValue)]; |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | private function getCurrencyFormatter() |
@@ -12,7 +12,7 @@ |
||
12 | 12 | { |
13 | 13 | if (!preg_match('/^[a-z]{2}$/', $code)) { |
14 | 14 | throw new \InvalidArgumentException( |
15 | - 'Invalid language code: ' . $code |
|
15 | + 'Invalid language code: '.$code |
|
16 | 16 | ); |
17 | 17 | } |
18 | 18 | $this->code = $code; |