Passed
Push — master ( bcd770...efb470 )
by Matt
04:35
created
src/Repository/WanderRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     public function createSearchQueryBuilder(string $entityAlias): QueryBuilder {
50 50
         $qb = $this->createQueryBuilder($entityAlias);
51 51
         $qb->select($entityAlias, 'i')
52
-            ->leftJoin($entityAlias.'.images', 'i');
52
+            ->leftJoin($entityAlias . '.images', 'i');
53 53
         return $qb;
54 54
     }
55 55
 
Please login to merge, or discard this patch.
src/DataFixtures/SingleWanderFixture.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     {
37 37
         $fs = new Filesystem();
38 38
         $source = __DIR__ . '/gpx/01-APR-21 125735.GPX';
39
-        $targetPath =  sys_get_temp_dir() . '/01-APR-21 125735.GPX';
39
+        $targetPath = sys_get_temp_dir() . '/01-APR-21 125735.GPX';
40 40
         $fs->copy($source, $targetPath);
41 41
         $uploadedFile = $this->uploadHelper->uploadGpxFile(new File($targetPath));
42 42
         $wander = new Wander();
Please login to merge, or discard this patch.
src/DataFixtures/ThreeWanderFixtures.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     {
36 36
         $fs = new Filesystem();
37 37
         $finder = new Finder();
38
-        foreach($finder->in(__DIR__ . '/gpx/three')->name('/\.gpx$/i') as $source) {
38
+        foreach ($finder->in(__DIR__ . '/gpx/three')->name('/\.gpx$/i') as $source) {
39 39
             $targetPath = sys_get_temp_dir() . '/' . $source->getFilename();
40 40
             $fs->copy($source->getPathname(), $targetPath);
41 41
             $uploadedFile = $this->uploadHelper->uploadGpxFile(new File($targetPath));
Please login to merge, or discard this patch.