Passed
Branch feature/frontend (0b874a)
by Stone
04:52
created
src/EventSubscriber/Trick/TrickCreatedSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     {
19 19
         $trick = $event->getEntity();
20 20
         $this->sendToDatabase($event);
21
-        $this->addFlash(FlashMessageCategory::SUCCESS, 'Trick ' . $trick->getName() . ' saved');
21
+        $this->addFlash(FlashMessageCategory::SUCCESS, 'Trick '.$trick->getName().' saved');
22 22
     }
23 23
 
24 24
     /**
Please login to merge, or discard this patch.
src/Serializer/TagSerializer.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
         $this->tagRepository = $tagRepository;
35 35
     }
36 36
 
37
-    private function serializeTag($tags){
37
+    private function serializeTag($tags) {
38 38
         $serializer = new Serializer([new ObjectNormalizer()]);
39 39
         return json_encode($serializer->normalize($tags, null, ['attributes' => ['name']]));
40 40
     }
Please login to merge, or discard this patch.
src/Entity/User.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function getUsername(): string
123 123
     {
124
-        return (string)$this->userName;
124
+        return (string) $this->userName;
125 125
     }
126 126
 
127 127
     /**
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     public function getPassword(): string
150 150
     {
151
-        return (string)$this->password;
151
+        return (string) $this->password;
152 152
     }
153 153
 
154 154
     public function setPassword(string $password): self
@@ -379,6 +379,6 @@  discard block
 block discarded – undo
379 379
 
380 380
     public function __toString()
381 381
     {
382
-        return $this->getUsername() . ' / ' . $this->getEmail();
382
+        return $this->getUsername().' / '.$this->getEmail();
383 383
     }
384 384
 }
Please login to merge, or discard this patch.
src/Entity/Comment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
         return $this;
92 92
     }
93 93
 
94
-    public function getCommentExcerpt(){
94
+    public function getCommentExcerpt() {
95 95
         return implode(' ', array_slice(explode(' ', $this->getComment()), 0, 10))." ...";
96 96
     }
97 97
 
Please login to merge, or discard this patch.
src/DataFixtures/TrickImageFixtures.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
                     $image->setTitle($faker->words(rand(1, 3), true));
49 49
                     $image->setImage($faker->image('public/uploads/trick_images', 400, 300, null, false));
50 50
                     $image->setTrick($trick);
51
-                    if(rand(0,2)>0 && !$primaryImageSet){
51
+                    if (rand(0, 2) > 0 && !$primaryImageSet) {
52 52
                         $image->setPrimaryImage(true);
53 53
                         $primaryImageSet = true;
54 54
                     }
Please login to merge, or discard this patch.
src/DataFixtures/UserFixtures.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
                 'admin'
34 34
             ))
35 35
             ->setRoles(['ROLE_ADMIN'])
36
-            ->setImage($faker->image('public/uploads/user_images',400,300, null, false) )
36
+            ->setImage($faker->image('public/uploads/user_images', 400, 300, null, false))
37 37
             ->setVerified(true)
38 38
             ->setVerifiedHash(bin2hex(random_bytes(16)));
39 39
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
                 $user,
48 48
                 'user'
49 49
             ))
50
-            ->setImage($faker->image('public/uploads/user_images',400,300, null, false) )
50
+            ->setImage($faker->image('public/uploads/user_images', 400, 300, null, false))
51 51
             ->setVerified(true)
52 52
             ->setVerifiedHash(bin2hex(random_bytes(16)));
53 53
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
         //Adding extra users
72 72
 
73
-        for($i=0; $i<10; $i++){
73
+        for ($i = 0; $i < 10; $i++) {
74 74
             $user = new User();
75 75
             $user->setEmail('user'.$i.'@localhost.com')
76 76
                 ->setUserName('user'.$i)
@@ -83,8 +83,8 @@  discard block
 block discarded – undo
83 83
                 ->setVerifiedHash(bin2hex(random_bytes(16)));
84 84
 
85 85
             //Not all users will have an image
86
-            if(rand(0,2)>=1){
87
-                $user->setImage($faker->image('public/uploads/user_images',400,300, null, false) );
86
+            if (rand(0, 2) >= 1) {
87
+                $user->setImage($faker->image('public/uploads/user_images', 400, 300, null, false));
88 88
             }
89 89
             // $product = new Product();
90 90
             $manager->persist($user);
Please login to merge, or discard this patch.
src/DataFixtures/TagFixtures.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -40,16 +40,16 @@  discard block
 block discarded – undo
40 40
         $fixedTag = new Tag();
41 41
         $fixedTag->setName("Starbug tag");
42 42
 
43
-        foreach ($tricks as $trick){
44
-            $maxTags = rand(0,5);
45
-            if($maxTags >0){
46
-                for($i=0; $i<=$maxTags; $i++){
43
+        foreach ($tricks as $trick) {
44
+            $maxTags = rand(0, 5);
45
+            if ($maxTags > 0) {
46
+                for ($i = 0; $i <= $maxTags; $i++) {
47 47
 
48
-                    $tagName = strtolower($faker->words(rand(1,3), true));
48
+                    $tagName = strtolower($faker->words(rand(1, 3), true));
49 49
                     //Avoid duplicate tags
50 50
                     $tag = $tagRepository->findOneBy(['name'=>$tagName]);
51
-                    if($tag === null){
52
-                        $tag=new Tag();
51
+                    if ($tag === null) {
52
+                        $tag = new Tag();
53 53
                         $tag->setName($tagName);
54 54
                         $manager->persist($tag);
55 55
                         $manager->flush(); //create the tag in DB
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
                     $trick->addTag($tag);
59 59
 
60
-                    if(rand(0,6)===1){
60
+                    if (rand(0, 6) === 1) {
61 61
                         $trick->addTag($fixedTag);
62 62
                     }
63 63
                 }
Please login to merge, or discard this patch.
src/Entity/Trick.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
278 278
      */
279 279
     public function getPrimaryImages(): ?Collection
280 280
     {
281
-        return $this->getImages()->filter(function (Image $image){
281
+        return $this->getImages()->filter(function(Image $image) {
282 282
             return $image->getPrimaryImage() === true;
283 283
         });
284 284
     }
Please login to merge, or discard this patch.
src/EventSubscriber/Image/ImageDeletedSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         $this->em->flush();
22 22
 
23 23
 
24
-        $this->addFlash(FlashMessageCategory::SUCCESS, 'image ' . $image->getTitle() . ' deleted');
24
+        $this->addFlash(FlashMessageCategory::SUCCESS, 'image '.$image->getTitle().' deleted');
25 25
 
26 26
     }
27 27
 
Please login to merge, or discard this patch.