Passed
Branch feature/frontend (f16ed3)
by Stone
07:11
created
src/Controller/Comment/DeleteCommentController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,13 +34,13 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function deleteTrick(Comment $comment, Request $request)
36 36
     {
37
-        if(!($this->isGranted('ROLE_ADMIN') || $this->getUser()->getId() === $comment->getUser()->getId()))
37
+        if (!($this->isGranted('ROLE_ADMIN') || $this->getUser()->getId() === $comment->getUser()->getId()))
38 38
         {
39
-            Throw new RedirectException($this->generateUrl('trick.show', ['id'=> $comment->getTrick()->getId(), 'slug'=> $comment->getTrick()->getSlug()]),"You are not allowed to edit this comment");
39
+            Throw new RedirectException($this->generateUrl('trick.show', ['id'=> $comment->getTrick()->getId(), 'slug'=> $comment->getTrick()->getSlug()]), "You are not allowed to edit this comment");
40 40
         }
41 41
 
42 42
         $submittedToken = $request->request->get('_token');
43
-        if (!$this->isCsrfTokenValid('delete-comment' . $comment->getId(), $submittedToken)) {
43
+        if (!$this->isCsrfTokenValid('delete-comment'.$comment->getId(), $submittedToken)) {
44 44
             throw new RedirectException($this->generateUrl('home'), 'Bad CSRF Token');
45 45
         }
46 46
 
@@ -49,6 +49,6 @@  discard block
 block discarded – undo
49 49
         $event = new CommentDeletedEvent($comment);
50 50
         $this->dispatcher->dispatch(CommentDeletedEvent::NAME, $event);
51 51
 
52
-        return $this->redirectToRoute('trick.show',['id'=> $trick->getId(), 'slug' => $trick->getSlug()]);
52
+        return $this->redirectToRoute('trick.show', ['id'=> $trick->getId(), 'slug' => $trick->getSlug()]);
53 53
     }
54 54
 }
55 55
\ No newline at end of file
Please login to merge, or discard this patch.
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/Form/CommentTypeForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 use Symfony\Component\Form\FormBuilderInterface;
10 10
 use Symfony\Component\OptionsResolver\OptionsResolver;
11 11
 
12
-class CommentTypeForm extends AbstractType{
12
+class CommentTypeForm extends AbstractType {
13 13
 
14 14
     public function buildForm(FormBuilderInterface $builder, array $options)
15 15
     {
Please login to merge, or discard this patch.
src/Form/TrickTypeForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     public function buildForm(FormBuilderInterface $builder, array $options)
21 21
     {
22 22
 
23
-        if($options['all_tags_json'] === '' || $options['trick_tags_json'] === ''){
23
+        if ($options['all_tags_json'] === '' || $options['trick_tags_json'] === '') {
24 24
             throw new \UnexpectedValueException("all_tags_json or trick_tags_json not defined in the form constructor");
25 25
         }
26 26
 
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.