@@ -91,7 +91,7 @@ |
||
91 | 91 | $this->externalOfferEditingService->addLabel($offerIdentifier, $label); |
92 | 92 | } catch (\Exception $e) { |
93 | 93 | $logContext = [ |
94 | - 'iri' => (string) $offerIdentifier->getIri(), |
|
94 | + 'iri' => (string)$offerIdentifier->getIri(), |
|
95 | 95 | 'command' => $originalCommandName, |
96 | 96 | 'exception' => get_class($e), |
97 | 97 | 'message' => $e->getMessage(), |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $variationLD = $variation->getBody(); |
72 | 72 | $language = 'nl'; |
73 | 73 | |
74 | - $variationLD->description->$language = (string) $descriptionEdited->getDescription(); |
|
74 | + $variationLD->description->$language = (string)$descriptionEdited->getDescription(); |
|
75 | 75 | $this->repository->save($variation->withBody($variationLD)); |
76 | 76 | } |
77 | 77 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | |
146 | 146 | // overwrite the description that's already set in the variation |
147 | 147 | if (!$variationLD->description) { |
148 | - $variationLD->description = (object) []; |
|
148 | + $variationLD->description = (object)[]; |
|
149 | 149 | } |
150 | 150 | $variationLD->description->nl = (string)$eventVariationCreated->getDescription(); |
151 | 151 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | throw new EventNotFoundException(); |
42 | 42 | } |
43 | 43 | |
44 | - return (string) $response->getBody(); |
|
44 | + return (string)$response->getBody(); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | public function eventsOrganizedByOrganizer($organizerId) |
@@ -68,7 +68,7 @@ |
||
68 | 68 | // If the id is not a valid url we assume it points to the local installation and generate one ourselves. |
69 | 69 | try { |
70 | 70 | $validUrl = \ValueObjects\Web\Url::fromNative($id); |
71 | - $url = new Url((string) $validUrl); |
|
71 | + $url = new Url((string)$validUrl); |
|
72 | 72 | } catch (InvalidNativeArgumentException $e) { |
73 | 73 | $url = new Url( |
74 | 74 | $this->eventIriGenerator->iri($id) |
@@ -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 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function sort(array &$entities, StringLiteral $value) |
15 | 15 | { |
16 | - return usort($entities, function ($entity1, $entity2) use ($value) { |
|
16 | + return usort($entities, function($entity1, $entity2) use ($value) { |
|
17 | 17 | /** @var Entity $entity1 */ |
18 | 18 | $weight1 = $this->getWeight($entity1, $value); |
19 | 19 |
@@ -142,7 +142,7 @@ |
||
142 | 142 | { |
143 | 143 | $uuid = null; |
144 | 144 | |
145 | - $name = new StringLiteral((string) $labelEvent->getLabel()); |
|
145 | + $name = new StringLiteral((string)$labelEvent->getLabel()); |
|
146 | 146 | |
147 | 147 | $entity = $this->readRepository->getByName($name); |
148 | 148 | if ($entity !== null) { |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | if (!empty($query)) { |
83 | 83 | $q->where($expr->like('name', ':role_name')); |
84 | - $q->setParameter('role_name', '%' . $query . '%'); |
|
84 | + $q->setParameter('role_name', '%'.$query.'%'); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | $results = $q->execute()->fetchAll(\PDO::FETCH_ASSOC); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | |
97 | 97 | if (!empty($query)) { |
98 | 98 | $q->where($expr->like('name', ':role_name')); |
99 | - $q->setParameter('role_name', '%' . $query . '%'); |
|
99 | + $q->setParameter('role_name', '%'.$query.'%'); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | $total = $q->execute()->fetchColumn(); |
@@ -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 |