Completed
Push — master ( 8cd7b5...0a4adb )
by Matt
05:29
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.
src/Controller/Admin/ProblemController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
  */
18 18
 class ProblemController extends AbstractController
19 19
 {
20
-   /**
20
+    /**
21 21
      * @Route("/throw", name="throw", methods={"GET"})
22 22
      */
23 23
     public function throw(): Response
Please login to merge, or discard this patch.