@@ -32,7 +32,7 @@ |
||
| 32 | 32 | public function serialize() |
| 33 | 33 | { |
| 34 | 34 | return parent::serialize() + array( |
| 35 | - 'label' => (string) $this->label, |
|
| 35 | + 'label' => (string)$this->label, |
|
| 36 | 36 | ); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -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 | { |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | - * @return String |
|
| 27 | + * @return string |
|
| 28 | 28 | */ |
| 29 | 29 | public function getDescription() |
| 30 | 30 | { |
@@ -9,7 +9,6 @@ |
||
| 9 | 9 | use CultuurNet\UDB3\Variations\Model\Properties\Description; |
| 10 | 10 | use CultuurNet\UDB3\Variations\Model\Properties\Id; |
| 11 | 11 | use JsonSchema\Validator; |
| 12 | -use ValueObjects\String\String; |
|
| 13 | 12 | use stdClass; |
| 14 | 13 | |
| 15 | 14 | class EditDescriptionJSONDeserializer extends JSONDeserializer |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | public static function calendar(Calendar $calendar) |
| 25 | 25 | { |
| 26 | - $offerCalenderUpdate = function ($body) use ($calendar) { |
|
| 26 | + $offerCalenderUpdate = function($body) use ($calendar) { |
|
| 27 | 27 | // Purge any existing calendar data |
| 28 | 28 | unset( |
| 29 | 29 | $body->calendarType, |
@@ -33,8 +33,8 @@ discard block |
||
| 33 | 33 | $body->openingHours |
| 34 | 34 | ); |
| 35 | 35 | |
| 36 | - return (object) array_merge( |
|
| 37 | - (array) $body, |
|
| 36 | + return (object)array_merge( |
|
| 37 | + (array)$body, |
|
| 38 | 38 | $calendar->toJsonLd() |
| 39 | 39 | ); |
| 40 | 40 | }; |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | $jsonLD->address = $placeCreated->getAddress()->toJsonLd(); |
| 161 | 161 | |
| 162 | 162 | $calendarJsonLD = $placeCreated->getCalendar()->toJsonLd(); |
| 163 | - $jsonLD = (object) array_merge((array) $jsonLD, $calendarJsonLD); |
|
| 163 | + $jsonLD = (object)array_merge((array)$jsonLD, $calendarJsonLD); |
|
| 164 | 164 | |
| 165 | 165 | $eventType = $placeCreated->getEventType(); |
| 166 | 166 | $jsonLD->terms = [ |
@@ -214,8 +214,8 @@ discard block |
||
| 214 | 214 | $jsonLD->address = $majorInfoUpdated->getAddress()->toJsonLd(); |
| 215 | 215 | |
| 216 | 216 | // Remove old theme and event type. |
| 217 | - $jsonLD->terms = array_filter($jsonLD->terms, function ($term) { |
|
| 218 | - return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
| 217 | + $jsonLD->terms = array_filter($jsonLD->terms, function($term) { |
|
| 218 | + return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
| 219 | 219 | }); |
| 220 | 220 | |
| 221 | 221 | $eventType = $majorInfoUpdated->getEventType(); |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | // Remove all old facilities + get numeric keys. |
| 362 | 362 | $terms = array_values(array_filter( |
| 363 | 363 | $terms, |
| 364 | - function ($term) { |
|
| 364 | + function($term) { |
|
| 365 | 365 | return $term->domain !== Facility::DOMAIN; |
| 366 | 366 | } |
| 367 | 367 | )); |
@@ -6,7 +6,6 @@ |
||
| 6 | 6 | use Broadway\Domain\DomainMessage; |
| 7 | 7 | use Broadway\EventHandling\EventListenerInterface; |
| 8 | 8 | use CultuurNet\UDB3\Actor\ActorImportedFromUDB2; |
| 9 | -use CultuurNet\UDB3\CalendarFactory; |
|
| 10 | 9 | use CultuurNet\UDB3\CalendarFactoryInterface; |
| 11 | 10 | use CultuurNet\UDB3\Cdb\ActorItemFactory; |
| 12 | 11 | use CultuurNet\UDB3\Cdb\CdbId\EventCdbIdExtractor; |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * @param array $data |
| 51 | - * @return mixed The object instance |
|
| 51 | + * @return AbstractImageEvent The object instance |
|
| 52 | 52 | */ |
| 53 | 53 | public static function deserialize(array $data) |
| 54 | 54 | { |
@@ -79,10 +79,10 @@ |
||
| 79 | 79 | */ |
| 80 | 80 | public function serialize() |
| 81 | 81 | { |
| 82 | - return parent::serialize() + array( |
|
| 83 | - 'media_object_id' => (string) $this->mediaObjectId, |
|
| 84 | - 'description' => (string) $this->description, |
|
| 85 | - 'copyright_holder' => (string) $this->copyrightHolder |
|
| 82 | + return parent::serialize() + array( |
|
| 83 | + 'media_object_id' => (string)$this->mediaObjectId, |
|
| 84 | + 'description' => (string)$this->description, |
|
| 85 | + 'copyright_holder' => (string)$this->copyrightHolder |
|
| 86 | 86 | ); |
| 87 | 87 | } |
| 88 | 88 | |
@@ -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 | */ |
@@ -3,15 +3,12 @@ |
||
| 3 | 3 | namespace CultuurNet\UDB3\Variations\Command; |
| 4 | 4 | |
| 5 | 5 | use CultuurNet\Deserializer\JSONDeserializer; |
| 6 | -use CultuurNet\UDB3\Offer\IriOfferIdentifierFactory; |
|
| 7 | -use CultuurNet\UDB3\Offer\IriOfferIdentifierFactoryInterface; |
|
| 8 | 6 | use CultuurNet\UDB3\Variations\Model\Properties\Description; |
| 9 | 7 | use CultuurNet\UDB3\Variations\Model\Properties\OwnerId; |
| 10 | 8 | use CultuurNet\UDB3\Variations\Model\Properties\Purpose; |
| 11 | 9 | use CultuurNet\UDB3\Variations\Model\Properties\Url; |
| 12 | 10 | use CultuurNet\UDB3\Variations\Model\Properties\UrlValidator; |
| 13 | 11 | use JsonSchema\Validator; |
| 14 | -use ValueObjects\String\String; |
|
| 15 | 12 | use stdClass; |
| 16 | 13 | |
| 17 | 14 | class CreateOfferVariationJSONDeserializer extends JSONDeserializer |
@@ -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 |
@@ -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 | |