Completed
Pull Request — master (#239)
by Luc
04:54
created
src/Label/ReadModels/Relations/Repository/Doctrine/DBALWriteRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
     ) {
44 44
         $queryBuilder = $this->createQueryBuilder()
45 45
             ->delete($this->getTableName())
46
-            ->where(SchemaConfigurator::UUID_COLUMN . ' = ?')
47
-            ->andWhere(SchemaConfigurator::RELATION_ID_COLUMN . ' = ?')
46
+            ->where(SchemaConfigurator::UUID_COLUMN.' = ?')
47
+            ->andWhere(SchemaConfigurator::RELATION_ID_COLUMN.' = ?')
48 48
             ->setParameters([$uuid->toNative(), $offerUuid->toNative()]);
49 49
 
50 50
         $queryBuilder->execute();
Please login to merge, or discard this patch.
src/SearchAPI2/ResultSetPullParser.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $items = new OfferIdentifierCollection();
80 80
         $totalItems = $cdbId = $elementName = $offerType = $resultXmlString = null;
81 81
 
82
-        $resetCurrentResultValues = function () use (&$cdbId, &$elementName, &$offerType, &$resultXmlString) {
82
+        $resetCurrentResultValues = function() use (&$cdbId, &$elementName, &$offerType, &$resultXmlString) {
83 83
             $cdbId = null;
84 84
             $elementName = self::CDBXML_TYPE_UNKNOWN;
85 85
             $offerType = self::OFFER_TYPE_UNKNOWN;
@@ -93,13 +93,13 @@  discard block
 block discarded – undo
93 93
 
94 94
         while ($r->read()) {
95 95
             if ($this->xmlNodeIsNumberOfRecordsTag($r)) {
96
-                $totalItems = new Integer((int) $r->readString());
96
+                $totalItems = new Integer((int)$r->readString());
97 97
             }
98 98
 
99 99
             if ($this->xmlNodeIsResultOpeningTag($r)) {
100 100
                 $resultXmlString = $r->readOuterXml();
101 101
                 $cdbId = $r->getAttribute('cdbid');
102
-                $elementName = 'cdbxml.' . $r->localName;
102
+                $elementName = 'cdbxml.'.$r->localName;
103 103
 
104 104
                 if ($elementName == self::CDBXML_TYPE_EVENT) {
105 105
                     $offerType = self::OFFER_TYPE_EVENT;
Please login to merge, or discard this patch.
src/Event/ReadModel/JSONLD/CdbXMLImporter.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     private function dateFromUdb2UnixTime($unixTime)
133 133
     {
134 134
         $dateTime = new \DateTime(
135
-            '@' . $unixTime,
135
+            '@'.$unixTime,
136 136
             new \DateTimeZone('Europe/Brussels')
137 137
         );
138 138
 
@@ -171,21 +171,21 @@  discard block
 block discarded – undo
171 171
 
172 172
         $validKeywords = array_filter(
173 173
             $keywords,
174
-            function (CultureFeed_Cdb_Data_Keyword $keyword) {
174
+            function(CultureFeed_Cdb_Data_Keyword $keyword) {
175 175
                 return strlen(trim($keyword->getValue())) > 0;
176 176
             }
177 177
         );
178 178
 
179 179
         $visibleKeywords = array_filter(
180 180
             $validKeywords,
181
-            function (CultureFeed_Cdb_Data_Keyword $keyword) {
181
+            function(CultureFeed_Cdb_Data_Keyword $keyword) {
182 182
                 return $keyword->isVisible();
183 183
             }
184 184
         );
185 185
 
186 186
         $hiddenKeywords = array_filter(
187 187
             $validKeywords,
188
-            function (CultureFeed_Cdb_Data_Keyword $keyword) {
188
+            function(CultureFeed_Cdb_Data_Keyword $keyword) {
189 189
                 return !$keyword->isVisible();
190 190
             }
191 191
         );
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     private function addKeywordsAsLabelsProperty($jsonLD, $labelsPropertyName, array $keywords)
204 204
     {
205 205
         $labels = array_map(
206
-            function ($keyword) {
206
+            function($keyword) {
207 207
                 /** @var CultureFeed_Cdb_Data_Keyword $keyword */
208 208
                 return $keyword->getValue();
209 209
             },
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
                     'addressLocality' => $address->getCity(),
260 260
                     'postalCode' => $address->getZip(),
261 261
                     'streetAddress' =>
262
-                        $address->getStreet() . ' ' . $address->getHouseNumber(
262
+                        $address->getStreet().' '.$address->getHouseNumber(
263 263
                         ),
264 264
                 );
265 265
             }
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
             $calendarType = 'periodic';
447 447
             $calendar->rewind();
448 448
             $firstCalendarItem = $calendar->current();
449
-            $startDateString = $firstCalendarItem->getDateFrom() . 'T00:00:00';
449
+            $startDateString = $firstCalendarItem->getDateFrom().'T00:00:00';
450 450
             $startDate = DateTimeFactory::dateTimeFromDateString($startDateString);
451 451
 
452 452
             if (iterator_count($calendar) > 1) {
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
                 $lastCalendarItem = $firstCalendarItem;
457 457
             }
458 458
 
459
-            $endDateString = $lastCalendarItem->getDateTo() . 'T00:00:00';
459
+            $endDateString = $lastCalendarItem->getDateTo().'T00:00:00';
460 460
             $endDate = DateTimeFactory::dateTimeFromDateString($endDateString);
461 461
 
462 462
             $jsonLD->startDate = $startDate->format('c');
@@ -468,9 +468,9 @@  discard block
 block discarded – undo
468 468
             $firstCalendarItem = $calendar->current();
469 469
             if ($firstCalendarItem->getStartTime()) {
470 470
                 $dateString =
471
-                    $firstCalendarItem->getDate() . 'T' . $firstCalendarItem->getStartTime();
471
+                    $firstCalendarItem->getDate().'T'.$firstCalendarItem->getStartTime();
472 472
             } else {
473
-                $dateString = $firstCalendarItem->getDate() . 'T00:00:00';
473
+                $dateString = $firstCalendarItem->getDate().'T00:00:00';
474 474
             }
475 475
 
476 476
             $startDate = DateTimeFactory::dateTimeFromDateString($dateString);
@@ -485,10 +485,10 @@  discard block
 block discarded – undo
485 485
             $endDateString = null;
486 486
             if ($lastCalendarItem->getEndTime()) {
487 487
                 $endDateString =
488
-                    $lastCalendarItem->getDate() . 'T' . $lastCalendarItem->getEndTime();
488
+                    $lastCalendarItem->getDate().'T'.$lastCalendarItem->getEndTime();
489 489
             } else {
490 490
                 if (iterator_count($calendar) > 1) {
491
-                    $endDateString = $lastCalendarItem->getDate() . 'T00:00:00';
491
+                    $endDateString = $lastCalendarItem->getDate().'T00:00:00';
492 492
                 }
493 493
             }
494 494
 
@@ -602,7 +602,7 @@  discard block
 block discarded – undo
602 602
             $slug = '';
603 603
         }
604 604
 
605
-        $reference = 'http://www.uitinvlaanderen.be/agenda/e/' . $slug . '/' . $event->getCdbId();
605
+        $reference = 'http://www.uitinvlaanderen.be/agenda/e/'.$slug.'/'.$event->getCdbId();
606 606
 
607 607
 
608 608
         if (!property_exists($jsonLD, 'sameAs')) {
Please login to merge, or discard this patch.
src/Label/OfferLabelDomainMessageEnricher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,14 +46,14 @@
 block discarded – undo
46 46
 
47 47
             $labelDetail = $this->readRepository->getByName(
48 48
                 new StringLiteral(
49
-                    (string) $payload->getLabel()
49
+                    (string)$payload->getLabel()
50 50
                 )
51 51
             );
52 52
 
53 53
             if ($labelDetail) {
54 54
                 $extraMetadata = new Metadata(
55 55
                     [
56
-                        'labelUuid' => (string) $labelDetail->getUuid(),
56
+                        'labelUuid' => (string)$labelDetail->getUuid(),
57 57
                     ]
58 58
                 );
59 59
 
Please login to merge, or discard this patch.
src/Label/ReadModels/JSON/Projector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
     {
143 143
         $uuid = null;
144 144
 
145
-        $name = new StringLiteral((string) $labelEvent->getLabel());
145
+        $name = new StringLiteral((string)$labelEvent->getLabel());
146 146
 
147 147
         $entity = $this->readRepository->getByName($name);
148 148
         if ($entity !== null) {
Please login to merge, or discard this patch.
src/Role/ReadModel/Search/Doctrine/DBALRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
         if (!empty($query)) {
83 83
             $q->where($expr->like('name', ':role_name'));
84
-            $q->setParameter('role_name', '%' . $query . '%');
84
+            $q->setParameter('role_name', '%'.$query.'%');
85 85
         }
86 86
 
87 87
         $results = $q->execute()->fetchAll(\PDO::FETCH_ASSOC);
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         if (!empty($query)) {
98 98
             $q->where($expr->like('name', ':role_name'));
99
-            $q->setParameter('role_name', '%' . $query . '%');
99
+            $q->setParameter('role_name', '%'.$query.'%');
100 100
         }
101 101
 
102 102
         $total = $q->execute()->fetchColumn();
Please login to merge, or discard this patch.
src/Address/DefaultAddressFormatter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
      */
13 13
     public function format(Address $address)
14 14
     {
15
-        return $address->getStreetAddress() . ', ' .
16
-            $address->getPostalCode() . ' ' .
17
-            $address->getLocality() . ', ' .
15
+        return $address->getStreetAddress().', '.
16
+            $address->getPostalCode().' '.
17
+            $address->getLocality().', '.
18 18
             $address->getCountry();
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/Label/ReadModels/Relations/Repository/Doctrine/ReadRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function getOfferLabelRelations(UUID $labelId)
16 16
     {
17 17
         $aliases = $this->getAliases();
18
-        $whereUuid = SchemaConfigurator::UUID_COLUMN . ' = ?';
18
+        $whereUuid = SchemaConfigurator::UUID_COLUMN.' = ?';
19 19
 
20 20
         $queryBuilder = $this->createQueryBuilder()->select($aliases)
21 21
             ->from($this->getTableName()->toNative())
Please login to merge, or discard this patch.
src/StringFilter/NewlineToSpaceStringFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     public function filter($string)
12 12
     {
13 13
         if (!is_string($string)) {
14
-            throw new \InvalidArgumentException('Argument should be string, got ' . gettype($string) . ' instead.');
14
+            throw new \InvalidArgumentException('Argument should be string, got '.gettype($string).' instead.');
15 15
         }
16 16
 
17 17
         return preg_replace("/(\\n)+/", " ", $string);
Please login to merge, or discard this patch.