@@ -18,7 +18,7 @@ |
||
18 | 18 | { |
19 | 19 | if (!is_string($eventId)) { |
20 | 20 | throw new \InvalidArgumentException( |
21 | - 'Expected eventId to be a string, received ' . gettype($eventId) |
|
21 | + 'Expected eventId to be a string, received '.gettype($eventId) |
|
22 | 22 | ); |
23 | 23 | } |
24 | 24 |
@@ -38,7 +38,7 @@ |
||
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
41 | - * @return mixed The object instance |
|
41 | + * @return AbstractContactPointUpdated The object instance |
|
42 | 42 | */ |
43 | 43 | public static function deserialize(array $data) |
44 | 44 | { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | public function jsonSerialize() |
67 | 67 | { |
68 | 68 | return [ |
69 | - '@id' => (string) $this->iri, |
|
69 | + '@id' => (string)$this->iri, |
|
70 | 70 | '@type' => $this->type->toNative(), |
71 | 71 | ]; |
72 | 72 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | { |
79 | 79 | return json_encode( |
80 | 80 | [ |
81 | - 'iri' => (string) $this->iri, |
|
81 | + 'iri' => (string)$this->iri, |
|
82 | 82 | 'id' => $this->id, |
83 | 83 | 'type' => $this->type->toNative(), |
84 | 84 | ] |
@@ -45,7 +45,7 @@ |
||
45 | 45 | |
46 | 46 | /** |
47 | 47 | * @param array $data |
48 | - * @return mixed The object instance |
|
48 | + * @return AbstractLabelEvent The object instance |
|
49 | 49 | */ |
50 | 50 | public static function deserialize(array $data) |
51 | 51 | { |
@@ -38,7 +38,7 @@ |
||
38 | 38 | public function serialize() |
39 | 39 | { |
40 | 40 | return parent::serialize() + array( |
41 | - 'label' => (string) $this->label, |
|
41 | + 'label' => (string)$this->label, |
|
42 | 42 | 'visibility' => $this->label->isVisible(), |
43 | 43 | ); |
44 | 44 | } |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function __construct($uuid, $unique) |
13 | 13 | { |
14 | - $message = 'Not unique: uuid = ' . $uuid . ', unique value = ' . $unique; |
|
14 | + $message = 'Not unique: uuid = '.$uuid.', unique value = '.$unique; |
|
15 | 15 | parent::__construct($message); |
16 | 16 | } |
17 | 17 | } |
@@ -11,7 +11,7 @@ |
||
11 | 11 | public function filter($string) |
12 | 12 | { |
13 | 13 | if (!is_string($string)) { |
14 | - throw new \InvalidArgumentException('Argument should be string, got ' . gettype($string) . ' instead.'); |
|
14 | + throw new \InvalidArgumentException('Argument should be string, got '.gettype($string).' instead.'); |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | // nl2br() only appends <br /> after each \n but does not remove the \n |
@@ -81,10 +81,10 @@ |
||
81 | 81 | public function serialize() |
82 | 82 | { |
83 | 83 | return [ |
84 | - 'streetAddress' => $this->streetAddress->toNative(), |
|
85 | - 'postalCode' => $this->postalCode->toNative(), |
|
86 | - 'addressLocality' => $this->locality->toNative(), |
|
87 | - 'addressCountry' => $this->countryCode, |
|
84 | + 'streetAddress' => $this->streetAddress->toNative(), |
|
85 | + 'postalCode' => $this->postalCode->toNative(), |
|
86 | + 'addressLocality' => $this->locality->toNative(), |
|
87 | + 'addressCountry' => $this->countryCode, |
|
88 | 88 | ]; |
89 | 89 | } |
90 | 90 |
@@ -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 | } |