Completed
Push — master ( fa4c12...c4f1b1 )
by
unknown
31s queued 23s
created
src/Search/ResultsGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 
109 109
             $total = $results->getTotalItems()->toNative();
110 110
 
111
-            $this->logger->info('Search API reported ' . $total . ' results');
111
+            $this->logger->info('Search API reported '.$total.' results');
112 112
 
113 113
             foreach ($results->getItems() as $item) {
114 114
                 $id = $item->getId();
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                         'query_duplicate_event',
124 124
                         array(
125 125
                             'query' => $query,
126
-                            'error' => "Found duplicate offer {$id} on page {$currentPage}, " .
126
+                            'error' => "Found duplicate offer {$id} on page {$currentPage}, ".
127 127
                                 "occurred first time on page {$ids[$id]}.",
128 128
                         )
129 129
                     );
Please login to merge, or discard this patch.
src/Event/LocationMarkedAsDuplicateProcessManager.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             if (!$result->getType()->sameValueAs(OfferType::EVENT())) {
76 76
                 $skipped[] = $result->getId();
77 77
                 $this->logger->warning(
78
-                    'Skipped result with id ' . $result->getId() . ' because it\'s not an event according to the @id parser.'
78
+                    'Skipped result with id '.$result->getId().' because it\'s not an event according to the @id parser.'
79 79
                 );
80 80
                 continue;
81 81
             }
@@ -89,17 +89,17 @@  discard block
 block discarded – undo
89 89
             $this->commandBus->dispatch($command);
90 90
 
91 91
             $this->logger->info(
92
-                'Dispatched UpdateLocation for result with id ' . $command->getItemId()
92
+                'Dispatched UpdateLocation for result with id '.$command->getItemId()
93 93
             );
94 94
         }
95 95
 
96 96
         $updated = count($commands);
97 97
         $total = $updated + count($skipped);
98 98
 
99
-        $this->logger->info('Received ' . $total . ' results from the search api.');
100
-        $this->logger->info('Updated ' . $updated . ' events to the canonical location.');
99
+        $this->logger->info('Received '.$total.' results from the search api.');
100
+        $this->logger->info('Updated '.$updated.' events to the canonical location.');
101 101
         $this->logger->info(
102
-            'Skipped ' . count($skipped) . ' events:' . PHP_EOL . implode(PHP_EOL, $skipped)
102
+            'Skipped '.count($skipped).' events:'.PHP_EOL.implode(PHP_EOL, $skipped)
103 103
         );
104 104
     }
105 105
 }
Please login to merge, or discard this patch.