@@ -96,18 +96,18 @@ discard block |
||
96 | 96 | // If the ellipsis is longer or equal to the maximum length, simply truncate the ellipsis so it fits in |
97 | 97 | // the maximum length and return it. |
98 | 98 | if ($suffix->length() >= $maxLength) { |
99 | - return (string) $suffix->truncate($maxLength); |
|
99 | + return (string)$suffix->truncate($maxLength); |
|
100 | 100 | } |
101 | 101 | } |
102 | 102 | |
103 | 103 | $stringy = Stringy::create($string, 'UTF-8'); |
104 | 104 | |
105 | 105 | $sentencePattern = '/(.*[.!?])(?:\\s|\\h|$|\\\u00a0).*/su'; |
106 | - $trunc = (string) $stringy->first($maxLength); |
|
106 | + $trunc = (string)$stringy->first($maxLength); |
|
107 | 107 | $hasEndingSymbolInRange = preg_match($sentencePattern, $trunc); |
108 | 108 | |
109 | 109 | if ($this->sentenceFriendly && $hasEndingSymbolInRange === 1) { |
110 | - $sentenceTruncated = preg_replace($sentencePattern, "$1".$suffix, $trunc); |
|
110 | + $sentenceTruncated = preg_replace($sentencePattern, "$1" . $suffix, $trunc); |
|
111 | 111 | $truncated = Stringy::create($sentenceTruncated, 'UTF-8'); |
112 | 112 | } else if ($wordSafe) { |
113 | 113 | $truncated = $stringy->safeTruncate($maxLength, $suffix); |
@@ -122,6 +122,6 @@ discard block |
||
122 | 122 | $truncated = $truncated->regexReplace($pattern, $suffix); |
123 | 123 | } |
124 | 124 | |
125 | - return (string) $truncated; |
|
125 | + return (string)$truncated; |
|
126 | 126 | } |
127 | 127 | } |
@@ -96,7 +96,7 @@ |
||
96 | 96 | private function getErrorMessages($validationErrors) |
97 | 97 | { |
98 | 98 | $errorMessages = array_map( |
99 | - function ($error) { |
|
99 | + function($error) { |
|
100 | 100 | return $error['message']; |
101 | 101 | }, |
102 | 102 | $validationErrors |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $this->logger->info( |
57 | 57 | 'job_info', |
58 | 58 | [ |
59 | - 'event_variation_id' => (string) $editDescription->getId(), |
|
59 | + 'event_variation_id' => (string)$editDescription->getId(), |
|
60 | 60 | ] |
61 | 61 | ); |
62 | 62 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $this->logger->info( |
71 | 71 | 'job_info', |
72 | 72 | [ |
73 | - 'event_variation_id' => (string) $deleteEventVariation->getId() |
|
73 | + 'event_variation_id' => (string)$deleteEventVariation->getId() |
|
74 | 74 | ] |
75 | 75 | ); |
76 | 76 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | public function editDescription(Id $id, Description $description) |
70 | 70 | { |
71 | 71 | /** @var EventVariation $variation */ |
72 | - $variation = $this->eventVariationRepository->load((string) $id); |
|
72 | + $variation = $this->eventVariationRepository->load((string)$id); |
|
73 | 73 | |
74 | 74 | $variation->editDescription($description); |
75 | 75 | |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | public function deleteEventVariation(Id $id) |
83 | 83 | { |
84 | 84 | /** @var EventVariation $variation */ |
85 | - $variation = $this->eventVariationRepository->load((string) $id); |
|
85 | + $variation = $this->eventVariationRepository->load((string)$id); |
|
86 | 86 | |
87 | 87 | $variation->markDeleted(); |
88 | 88 |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | private function guardNotDeleted() |
123 | 123 | { |
124 | 124 | if ($this->isDeleted()) { |
125 | - throw new AggregateDeletedException((string) $this->id); |
|
125 | + throw new AggregateDeletedException((string)$this->id); |
|
126 | 126 | } |
127 | 127 | } |
128 | 128 | |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | */ |
149 | 149 | public function getAggregateRootId() |
150 | 150 | { |
151 | - return (string) $this->id; |
|
151 | + return (string)$this->id; |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
@@ -39,7 +39,7 @@ |
||
39 | 39 | public function serialize() |
40 | 40 | { |
41 | 41 | return parent::serialize() + array( |
42 | - 'description' => (string) $this->description, |
|
42 | + 'description' => (string)$this->description, |
|
43 | 43 | ); |
44 | 44 | } |
45 | 45 |
@@ -93,10 +93,10 @@ |
||
93 | 93 | public function serialize() |
94 | 94 | { |
95 | 95 | return parent::serialize() + array( |
96 | - 'event_url' => (string) $this->getEventUrl(), |
|
97 | - 'owner_id' => (string) $this->getOwnerId(), |
|
98 | - 'purpose' => (string) $this->getPurpose(), |
|
99 | - 'description' => (string) $this->getDescription() |
|
96 | + 'event_url' => (string)$this->getEventUrl(), |
|
97 | + 'owner_id' => (string)$this->getOwnerId(), |
|
98 | + 'purpose' => (string)$this->getPurpose(), |
|
99 | + 'description' => (string)$this->getDescription() |
|
100 | 100 | ); |
101 | 101 | } |
102 | 102 |
@@ -37,7 +37,7 @@ |
||
37 | 37 | public function serialize() |
38 | 38 | { |
39 | 39 | return array( |
40 | - 'id' => (string) $this->getId(), |
|
40 | + 'id' => (string)$this->getId(), |
|
41 | 41 | ); |
42 | 42 | } |
43 | 43 |
@@ -62,7 +62,7 @@ |
||
62 | 62 | $variationLD = $variation->getBody(); |
63 | 63 | $language = 'nl'; |
64 | 64 | |
65 | - $variationLD->description->$language = (string) $descriptionEdited->getDescription(); |
|
65 | + $variationLD->description->$language = (string)$descriptionEdited->getDescription(); |
|
66 | 66 | $this->repository->save($variation->withBody($variationLD)); |
67 | 67 | |
68 | 68 | } |