@@ -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( |
@@ -109,11 +109,11 @@ |
||
| 109 | 109 | public function serialize() |
| 110 | 110 | { |
| 111 | 111 | return [ |
| 112 | - 'media_object_id' => (string) $this->getMediaObjectId(), |
|
| 113 | - 'mime_type' => (string) $this->getMimeType(), |
|
| 114 | - 'description' => (string) $this->getDescription(), |
|
| 115 | - 'copyright_holder' => (string) $this->getCopyrightHolder(), |
|
| 116 | - 'source_location' => (string) $this->getSourceLocation() |
|
| 112 | + 'media_object_id' => (string)$this->getMediaObjectId(), |
|
| 113 | + 'mime_type' => (string)$this->getMimeType(), |
|
| 114 | + 'description' => (string)$this->getDescription(), |
|
| 115 | + 'copyright_holder' => (string)$this->getCopyrightHolder(), |
|
| 116 | + 'source_location' => (string)$this->getSourceLocation() |
|
| 117 | 117 | ]; |
| 118 | 118 | } |
| 119 | 119 | } |
@@ -107,7 +107,7 @@ |
||
| 107 | 107 | 'mime_type' => $this->getMimeType()->toNative(), |
| 108 | 108 | 'description' => $this->getDescription()->toNative(), |
| 109 | 109 | 'copyright_holder' => $this->getCopyrightHolder()->toNative(), |
| 110 | - 'source_location' => (string) $this->getSourceLocation() |
|
| 110 | + 'source_location' => (string)$this->getSourceLocation() |
|
| 111 | 111 | ); |
| 112 | 112 | } |
| 113 | 113 | |
@@ -78,6 +78,9 @@ |
||
| 78 | 78 | return $document->getRawBody(); |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | + /** |
|
| 82 | + * @param string $id |
|
| 83 | + */ |
|
| 81 | 84 | public function iri($id) |
| 82 | 85 | { |
| 83 | 86 | return $this->iriGenerator->iri($id); |
@@ -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 | }; |
@@ -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,8 +3,6 @@ |
||
| 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; |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | private function getErrorMessages($validationErrors) |
| 121 | 121 | { |
| 122 | 122 | $errorMessages = array_map( |
| 123 | - function ($error) { |
|
| 123 | + function($error) { |
|
| 124 | 124 | return $error['message']; |
| 125 | 125 | }, |
| 126 | 126 | $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 | */ |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | private function getErrorMessages($validationErrors) |
| 121 | 121 | { |
| 122 | 122 | $errorMessages = array_map( |
| 123 | - function ($error) { |
|
| 123 | + function($error) { |
|
| 124 | 124 | return $error['message']; |
| 125 | 125 | }, |
| 126 | 126 | $validationErrors |