Completed
Push — master ( fdd157...c7fad4 )
by Wachter
15:08
created
src/Storage/ElasticsearchActivityStorage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         $search = $this->createQueryForSearch($query, $fields);
105 105
 
106 106
         if ($sortColumn && $sortOrder) {
107
-            $search->addSort(new FieldSort($sortColumn . '.raw', $sortOrder));
107
+            $search->addSort(new FieldSort($sortColumn.'.raw', $sortOrder));
108 108
         }
109 109
 
110 110
         if (!$pageSize) {
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
             $boolQuery = new BoolQuery();
217 217
 
218 218
             foreach ($fields as $field) {
219
-                $boolQuery->add(new WildcardQuery($field, '*' . $query . '*'), BoolQuery::SHOULD);
219
+                $boolQuery->add(new WildcardQuery($field, '*'.$query.'*'), BoolQuery::SHOULD);
220 220
             }
221 221
 
222 222
             $search->addQuery($boolQuery);
Please login to merge, or discard this patch.
tests/app/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function registerContainerConfiguration(LoaderInterface $loader)
36 36
     {
37
-        $loader->load(__DIR__ . '/config/config.yml');
37
+        $loader->load(__DIR__.'/config/config.yml');
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
tests/bootstrap.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
 
12 12
 use Doctrine\Common\Annotations\AnnotationRegistry;
13 13
 
14
-$file = __DIR__ . '/../vendor/autoload.php';
14
+$file = __DIR__.'/../vendor/autoload.php';
15 15
 if (!file_exists($file)) {
16 16
     throw new RuntimeException('Install dependencies to run test suite.');
17 17
 }
Please login to merge, or discard this patch.