@@ -7,7 +7,6 @@ |
||
| 7 | 7 | |
| 8 | 8 | namespace CultuurNet\UDB3; |
| 9 | 9 | |
| 10 | -use Assert\Assertion; |
|
| 11 | 10 | use Broadway\Domain\AggregateRoot; |
| 12 | 11 | use Broadway\Domain\DomainEventStream; |
| 13 | 12 | |
@@ -70,10 +70,10 @@ |
||
| 70 | 70 | public function serialize() |
| 71 | 71 | { |
| 72 | 72 | return [ |
| 73 | - 'streetAddress' => $this->streetAddress, |
|
| 74 | - 'postalCode' => $this->postalCode, |
|
| 75 | - 'locality' => $this->locality, |
|
| 76 | - 'country' => $this->country, |
|
| 73 | + 'streetAddress' => $this->streetAddress, |
|
| 74 | + 'postalCode' => $this->postalCode, |
|
| 75 | + 'locality' => $this->locality, |
|
| 76 | + 'country' => $this->country, |
|
| 77 | 77 | ]; |
| 78 | 78 | } |
| 79 | 79 | |
@@ -132,14 +132,14 @@ |
||
| 132 | 132 | public function serialize() |
| 133 | 133 | { |
| 134 | 134 | return [ |
| 135 | - 'phone' => $this->phone, |
|
| 136 | - 'email' => $this->email, |
|
| 137 | - 'url' => $this->url, |
|
| 138 | - 'urlLabel' => $this->urlLabel, |
|
| 139 | - 'name' => $this->name, |
|
| 140 | - 'description' => $this->description, |
|
| 141 | - 'availabilityStarts' => $this->availabilityStarts, |
|
| 142 | - 'availabilityEnds' => $this->availabilityEnds |
|
| 135 | + 'phone' => $this->phone, |
|
| 136 | + 'email' => $this->email, |
|
| 137 | + 'url' => $this->url, |
|
| 138 | + 'urlLabel' => $this->urlLabel, |
|
| 139 | + 'name' => $this->name, |
|
| 140 | + 'description' => $this->description, |
|
| 141 | + 'availabilityStarts' => $this->availabilityStarts, |
|
| 142 | + 'availabilityEnds' => $this->availabilityEnds |
|
| 143 | 143 | ]; |
| 144 | 144 | } |
| 145 | 145 | |
@@ -70,9 +70,9 @@ |
||
| 70 | 70 | public function serialize() |
| 71 | 71 | { |
| 72 | 72 | return [ |
| 73 | - 'id' => $this->id, |
|
| 74 | - 'label' => $this->label, |
|
| 75 | - 'domain' => $this->domain, |
|
| 73 | + 'id' => $this->id, |
|
| 74 | + 'label' => $this->label, |
|
| 75 | + 'domain' => $this->domain, |
|
| 76 | 76 | ]; |
| 77 | 77 | } |
| 78 | 78 | |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | |
| 24 | 24 | $method = $this->getHandleMethod($command); |
| 25 | 25 | |
| 26 | - if (! method_exists($this, $method)) { |
|
| 26 | + if (!method_exists($this, $method)) { |
|
| 27 | 27 | return; |
| 28 | 28 | } |
| 29 | 29 | |
@@ -72,10 +72,10 @@ |
||
| 72 | 72 | public function serialize() |
| 73 | 73 | { |
| 74 | 74 | return [ |
| 75 | - 'phone' => $this->phones, |
|
| 76 | - 'email' => $this->emails, |
|
| 77 | - 'url' => $this->urls, |
|
| 78 | - 'type' => $this->type, |
|
| 75 | + 'phone' => $this->phones, |
|
| 76 | + 'email' => $this->emails, |
|
| 77 | + 'url' => $this->urls, |
|
| 78 | + 'type' => $this->type, |
|
| 79 | 79 | ]; |
| 80 | 80 | } |
| 81 | 81 | |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Created by PhpStorm. |
|
| 4 | - * User: nicolas |
|
| 5 | - * Date: 27/10/15 |
|
| 6 | - * Time: 12:28 |
|
| 7 | - */ |
|
| 3 | + * Created by PhpStorm. |
|
| 4 | + * User: nicolas |
|
| 5 | + * Date: 27/10/15 |
|
| 6 | + * Time: 12:28 |
|
| 7 | + */ |
|
| 8 | 8 | |
| 9 | 9 | namespace CultuurNet\UDB3\Event\Events; |
| 10 | 10 | |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | public static function deserialize(array $data) |
| 58 | 58 | { |
| 59 | 59 | $labels = array_map( |
| 60 | - function ($item) { |
|
| 60 | + function($item) { |
|
| 61 | 61 | return new Label( |
| 62 | 62 | $item['text'], |
| 63 | 63 | $item['visible'] |
@@ -78,9 +78,9 @@ discard block |
||
| 78 | 78 | public function serialize() |
| 79 | 79 | { |
| 80 | 80 | $labels = array_map( |
| 81 | - function (Label $label) { |
|
| 81 | + function(Label $label) { |
|
| 82 | 82 | return [ |
| 83 | - 'text' => (string) $label, |
|
| 83 | + 'text' => (string)$label, |
|
| 84 | 84 | 'visible' => $label->isVisible(), |
| 85 | 85 | ]; |
| 86 | 86 | }, |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | - * @return mixed The object instance |
|
| 55 | + * @return LabelsMerged The object instance |
|
| 56 | 56 | */ |
| 57 | 57 | public static function deserialize(array $data) |
| 58 | 58 | { |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Created by PhpStorm. |
|
| 4 | - * User: nicolas |
|
| 5 | - * Date: 16/11/15 |
|
| 6 | - * Time: 14:03 |
|
| 7 | - */ |
|
| 3 | + * Created by PhpStorm. |
|
| 4 | + * User: nicolas |
|
| 5 | + * Date: 16/11/15 |
|
| 6 | + * Time: 14:03 |
|
| 7 | + */ |
|
| 8 | 8 | |
| 9 | 9 | namespace CultuurNet\UDB3\Event\Events; |
| 10 | 10 | |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | - * @return mixed The object instance |
|
| 41 | + * @return TranslationDeleted The object instance |
|
| 42 | 42 | */ |
| 43 | 43 | public static function deserialize(array $data) |
| 44 | 44 | { |
@@ -215,7 +215,7 @@ |
||
| 215 | 215 | $labels = $labelsMerged->getLabels()->toStrings(); |
| 216 | 216 | // Quote labels. |
| 217 | 217 | $quotedLabels = array_map( |
| 218 | - function ($label) { |
|
| 218 | + function($label) { |
|
| 219 | 219 | return "'{$label}'"; |
| 220 | 220 | }, |
| 221 | 221 | $labels |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @file |
|
| 4 | - */ |
|
| 3 | + * @file |
|
| 4 | + */ |
|
| 5 | 5 | |
| 6 | 6 | namespace CultuurNet\UDB3\Variations; |
| 7 | 7 | |
@@ -5,9 +5,7 @@ discard block |
||
| 5 | 5 | |
| 6 | 6 | namespace CultuurNet\UDB3\Event\ReadModel\History; |
| 7 | 7 | |
| 8 | -use Broadway\Domain\DateTime; |
|
| 9 | 8 | use Broadway\Domain\DomainMessage; |
| 10 | -use Broadway\Domain\Metadata; |
|
| 11 | 9 | use Broadway\EventHandling\EventListenerInterface; |
| 12 | 10 | use CultuurNet\UDB3\Cdb\EventItemFactory; |
| 13 | 11 | use CultuurNet\UDB3\Event\DescriptionTranslated; |
@@ -21,11 +19,8 @@ discard block |
||
| 21 | 19 | use CultuurNet\UDB3\Event\Events\LabelsMerged; |
| 22 | 20 | use CultuurNet\UDB3\Event\Events\TranslationDeleted; |
| 23 | 21 | use CultuurNet\UDB3\Event\Events\LabelDeleted; |
| 24 | -use CultuurNet\UDB3\Event\ReadModel\DocumentRepositoryInterface; |
|
| 25 | 22 | use CultuurNet\UDB3\Event\TitleTranslated; |
| 26 | -use CultuurNet\UDB3\EventHandling\DelegateEventHandlingToSpecificMethodTrait; |
|
| 27 | 23 | use CultuurNet\UDB3\Offer\ReadModel\History\OfferHistoryProjector; |
| 28 | -use CultuurNet\UDB3\ReadModel\JsonDocument; |
|
| 29 | 24 | use ValueObjects\String\String; |
| 30 | 25 | |
| 31 | 26 | class HistoryProjector extends OfferHistoryProjector implements EventListenerInterface |