Completed
Pull Request — master (#281)
by Kristof
04:25
created
src/UiTID/CdbXmlCreatedByToUserIdResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
             if (!$userId) {
46 46
                 $this->logger->warning(
47
-                    'Unable to find user with identifier ' . $createdByIdentifier
47
+                    'Unable to find user with identifier '.$createdByIdentifier
48 48
                 );
49 49
             }
50 50
         } catch (Exception $e) {
Please login to merge, or discard this patch.
src/Event/EventEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     ) {
99 99
         if (!is_string($eventId)) {
100 100
             throw new \InvalidArgumentException(
101
-                'Expected eventId to be a string, received ' . gettype($eventId)
101
+                'Expected eventId to be a string, received '.gettype($eventId)
102 102
             );
103 103
         }
104 104
 
Please login to merge, or discard this patch.
src/Organizer/Organizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     public function applyOrganizerImportedFromUDB2(
99 99
         OrganizerImportedFromUDB2 $organizerImported
100 100
     ) {
101
-        $this->actorId = (string) $organizerImported->getActorId();
101
+        $this->actorId = (string)$organizerImported->getActorId();
102 102
     }
103 103
 
104 104
     /**
Please login to merge, or discard this patch.
src/Variations/Model/Properties/DefaultUrlValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     public function validateUrl(Url $url)
49 49
     {
50 50
         $identifier = $this->iriOfferIdentifierFactory->fromIri(
51
-            \ValueObjects\Web\Url::fromNative((string) $url)
51
+            \ValueObjects\Web\Url::fromNative((string)$url)
52 52
         );
53 53
         $offerType = $identifier->getType();
54 54
         $offerId = $identifier->getId();
Please login to merge, or discard this patch.
src/Offer/IriOfferIdentifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     public function jsonSerialize()
67 67
     {
68 68
         return [
69
-            '@id' => (string) $this->iri,
69
+            '@id' => (string)$this->iri,
70 70
             '@type' => $this->type->toNative(),
71 71
         ];
72 72
     }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     {
79 79
         return json_encode(
80 80
             [
81
-                'iri' => (string) $this->iri,
81
+                'iri' => (string)$this->iri,
82 82
                 'id' => $this->id,
83 83
                 'type' => $this->type->toNative(),
84 84
             ]
Please login to merge, or discard this patch.
src/Offer/DefaultExternalOfferEditingService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,12 +39,12 @@  discard block
 block discarded – undo
39 39
     public function addLabel(IriOfferIdentifier $identifier, Label $label)
40 40
     {
41 41
         $uri = $this->createUri(
42
-            (string) $identifier->getIri(),
42
+            (string)$identifier->getIri(),
43 43
             'labels'
44 44
         );
45 45
 
46 46
         $data = [
47
-            'label' => (string) $label,
47
+            'label' => (string)$label,
48 48
         ];
49 49
 
50 50
         $request = $this->createJsonPostRequest($uri, $data);
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     private function createUri($iri, $path)
60 60
     {
61 61
         return $this->psr7Factory->createUri(
62
-            rtrim($iri, '/') . '/' . $path
62
+            rtrim($iri, '/').'/'.$path
63 63
         );
64 64
     }
65 65
 
Please login to merge, or discard this patch.
src/Offer/BulkLabelCommandHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
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(),
Please login to merge, or discard this patch.
src/Offer/Events/AbstractEventWithIri.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function __construct($iri)
18 18
     {
19
-        $this->iri = (string) $iri;
19
+        $this->iri = (string)$iri;
20 20
     }
21 21
 
22 22
     /**
Please login to merge, or discard this patch.
src/Event/ReadModel/Relations/Doctrine/DBALRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     public function removeOrganizer($eventId)
43 43
     {
44
-        $transaction = function ($connection) use ($eventId) {
44
+        $transaction = function($connection) use ($eventId) {
45 45
             if ($this->eventHasRelations($connection, $eventId)) {
46 46
                 $this->updateEventRelation($connection, $eventId, 'organizer', null);
47 47
             }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function storeRelation($eventId, $relationType, $itemId)
64 64
     {
65
-        $transaction = function ($connection) use ($eventId, $relationType, $itemId) {
65
+        $transaction = function($connection) use ($eventId, $relationType, $itemId) {
66 66
             if ($this->eventHasRelations($connection, $eventId)) {
67 67
                 $this->updateEventRelation($connection, $eventId, $relationType, $itemId);
68 68
             } else {
Please login to merge, or discard this patch.