@@ -15,7 +15,7 @@ |
||
| 15 | 15 | /** |
| 16 | 16 | * Gets the JSON-LD structure of an Organizer. |
| 17 | 17 | * |
| 18 | - * @param string $organizerId |
|
| 18 | + * @param string $oganizerId |
|
| 19 | 19 | * Id of the Organizer. |
| 20 | 20 | * |
| 21 | 21 | * @return \stdClass |
@@ -13,8 +13,6 @@ |
||
| 13 | 13 | protected $repositories; |
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | - * @param SavedSearchRepositoryInterface $repository,... |
|
| 17 | - * Optionally an unlimited list of repositories to combine. |
|
| 18 | 16 | * |
| 19 | 17 | * @throws \InvalidArgumentException |
| 20 | 18 | * When one of the provided arguments does not implement |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | foreach ($arguments as $argument) { |
| 27 | 27 | if (!($argument instanceof SavedSearchRepositoryInterface)) { |
| 28 | 28 | $error = 'Argument provided should implement SavedSearchRepositoryInterface. (' |
| 29 | - . get_class($argument) . ' given.)'; |
|
| 29 | + . get_class($argument).' given.)'; |
|
| 30 | 30 | throw new \InvalidArgumentException($error); |
| 31 | 31 | } |
| 32 | 32 | |
@@ -33,8 +33,8 @@ |
||
| 33 | 33 | public function equals(Label $label) |
| 34 | 34 | { |
| 35 | 35 | return strcmp( |
| 36 | - mb_strtolower((string) $this, 'UTF-8'), |
|
| 37 | - mb_strtolower((string) $label, 'UTF-8') |
|
| 36 | + mb_strtolower((string)$this, 'UTF-8'), |
|
| 37 | + mb_strtolower((string)$label, 'UTF-8') |
|
| 38 | 38 | ) == 0; |
| 39 | 39 | } |
| 40 | 40 | } |
@@ -88,7 +88,7 @@ |
||
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | return parent::serialize() + array( |
| 91 | - 'title' => (string) $this->getTitle(), |
|
| 91 | + 'title' => (string)$this->getTitle(), |
|
| 92 | 92 | 'addresses' => $addresses, |
| 93 | 93 | 'phones' => $this->getPhones(), |
| 94 | 94 | 'emails' => $this->getEmails(), |
@@ -113,7 +113,7 @@ |
||
| 113 | 113 | $theme = $this->getTheme()->serialize(); |
| 114 | 114 | } |
| 115 | 115 | return parent::serialize() + array( |
| 116 | - 'title' => (string) $this->getTitle(), |
|
| 116 | + 'title' => (string)$this->getTitle(), |
|
| 117 | 117 | 'event_type' => $this->getEventType()->serialize(), |
| 118 | 118 | 'theme' => $theme, |
| 119 | 119 | 'address' => $this->getAddress()->serialize(), |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | ]; |
| 49 | 49 | |
| 50 | 50 | if ($this->id) { |
| 51 | - $serializedSavedSearch['id'] = (string) $this->id; |
|
| 51 | + $serializedSavedSearch['id'] = (string)$this->id; |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | return $serializedSavedSearch; |
@@ -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 |
@@ -70,7 +70,7 @@ |
||
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | - * @param mixed $json |
|
| 73 | + * @param stdClass $json |
|
| 74 | 74 | * |
| 75 | 75 | * @throws ValidationException |
| 76 | 76 | */ |
@@ -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 | |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | |
| 14 | 14 | public function __construct($keyword) |
| 15 | 15 | { |
| 16 | - $keyword = (string) $keyword; |
|
| 16 | + $keyword = (string)$keyword; |
|
| 17 | 17 | |
| 18 | 18 | $this->filterQuery = new FilterQuery( |
| 19 | 19 | sprintf( |