Completed
Pull Request — master (#397)
by Luc
03:50
created
src/Organizer/Events/OrganizerCreated.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
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(),
Please login to merge, or discard this patch.
src/SavedSearches/ReadModel/SavedSearch.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
         ];
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;
Please login to merge, or discard this patch.
src/Variations/Model/Events/DescriptionEdited.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/SearchAPI2/Filters/DoesNotHaveKeyword.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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(
Please login to merge, or discard this patch.
src/Offer/ReadModel/JSONLD/OfferUpdate.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         };
Please login to merge, or discard this patch.
src/Variations/Model/OfferVariation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     private function guardNotDeleted()
123 123
     {
124 124
         if ($this->isDeleted()) {
125
-            throw new AggregateDeletedException((string) $this->id);
125
+            throw new AggregateDeletedException((string)$this->id);
126 126
         }
127 127
     }
128 128
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     public function getAggregateRootId()
150 150
     {
151
-        return (string) $this->id;
151
+        return (string)$this->id;
152 152
     }
153 153
 
154 154
     /**
Please login to merge, or discard this patch.
src/Variations/Model/Events/OfferVariationEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function serialize()
38 38
     {
39 39
         return array(
40
-            'id' => (string) $this->getId(),
40
+            'id' => (string)$this->getId(),
41 41
         );
42 42
     }
43 43
 
Please login to merge, or discard this patch.
src/Variations/Model/Events/OfferVariationCreated.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -94,10 +94,10 @@
 block discarded – undo
94 94
     public function serialize()
95 95
     {
96 96
         return parent::serialize() + array(
97
-            'origin_url' => (string) $this->getOriginUrl(),
98
-            'owner_id' => (string) $this->getOwnerId(),
99
-            'purpose' => (string) $this->getPurpose(),
100
-            'description' => (string) $this->getDescription(),
97
+            'origin_url' => (string)$this->getOriginUrl(),
98
+            'owner_id' => (string)$this->getOwnerId(),
99
+            'purpose' => (string)$this->getPurpose(),
100
+            'description' => (string)$this->getDescription(),
101 101
         );
102 102
     }
103 103
 
Please login to merge, or discard this patch.
src/Variations/ReadModel/Search/Doctrine/DBALRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,11 +49,11 @@
 block discarded – undo
49 49
         $this->connection->insert(
50 50
             $this->connection->quoteIdentifier($this->tableName),
51 51
             [
52
-                'id' => (string) $variationId,
53
-                'owner' => (string) $ownerId,
54
-                'purpose' => (string) $purpose,
52
+                'id' => (string)$variationId,
53
+                'owner' => (string)$ownerId,
54
+                'purpose' => (string)$purpose,
55 55
                 'inserted' => time(),
56
-                'origin_url' => (string) $eventUrl,
56
+                'origin_url' => (string)$eventUrl,
57 57
             ]
58 58
         );
59 59
 
Please login to merge, or discard this patch.