@@ -49,7 +49,7 @@ |
||
| 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 | |
@@ -36,7 +36,7 @@ |
||
| 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(); |
@@ -35,7 +35,7 @@ |
||
| 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)); |