Passed
Push — develop ( 55232b...a353c8 )
by Stone
04:53 queued 24s
created
src/Repository/TagRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,14 +32,14 @@
 block discarded – undo
32 32
     }
33 33
 
34 34
 
35
-    public function findBySearchQuery(array $searchTerms){
35
+    public function findBySearchQuery(array $searchTerms) {
36 36
 
37 37
         $queryBuilder = $this->createQueryBuilder('p');
38 38
 
39 39
         foreach ($searchTerms as $key => $term) {
40 40
             $queryBuilder
41
-                ->orWhere('p.name LIKE :term_' . $key)
42
-                ->setParameter('term_' . $key, '%' . $term . '%');
41
+                ->orWhere('p.name LIKE :term_'.$key)
42
+                ->setParameter('term_'.$key, '%'.$term.'%');
43 43
 
44 44
         }
45 45
 
Please login to merge, or discard this patch.
src/DataFixtures/CommentFixtures.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
                     $comment = new Comment();
51 51
                     $comment->setTrick($trick);
52 52
                     $comment->setUser($faker->randomElement($users));
53
-                    $comment->setComment($faker->realText(rand(10,75)));
53
+                    $comment->setComment($faker->realText(rand(10, 75)));
54 54
 
55 55
                     $manager->persist($comment);
56 56
 
Please login to merge, or discard this patch.
src/DataFixtures/TrickFixtures.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -15,19 +15,19 @@
 block discarded – undo
15 15
         $faker = Factory::create();
16 16
 
17 17
         $categoryList = array();
18
-        for($i=0; $i<5; $i++){
18
+        for ($i = 0; $i < 5; $i++) {
19 19
             $category = new Category();
20 20
             $categoryList[] = $category->setName($faker->sentence(5));
21 21
             $manager->persist($category);
22 22
         }
23 23
 
24
-        for ($i=0; $i<25; $i++){
24
+        for ($i = 0; $i < 25; $i++) {
25 25
             $trick = new Trick();
26 26
             $trick
27
-                ->setName($faker->words(rand(1,5), true))
28
-                ->setText($faker->paragraph(rand(3,20)))
27
+                ->setName($faker->words(rand(1, 5), true))
28
+                ->setText($faker->paragraph(rand(3, 20)))
29 29
                 ->setCreatedAt($faker->dateTimeThisDecade())
30
-                ->setCategory($categoryList[rand(0,4)])
30
+                ->setCategory($categoryList[rand(0, 4)])
31 31
             ;
32 32
 
33 33
             $manager->persist($trick);
Please login to merge, or discard this patch.
src/Controller/Comment/EditCommentController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -85,10 +85,10 @@
 block discarded – undo
85 85
      * Checks if the user is admin or author of the comment.
86 86
      * Thows a redirect to the trick show page
87 87
      */
88
-    private function checkSecurity(Comment $comment){
89
-        if(!($this->isGranted('ROLE_ADMIN') || $this->getUser()->getId() === $comment->getUser()->getId()))
88
+    private function checkSecurity(Comment $comment) {
89
+        if (!($this->isGranted('ROLE_ADMIN') || $this->getUser()->getId() === $comment->getUser()->getId()))
90 90
         {
91
-            Throw new RedirectException($this->generateUrl('trick.show', ['id'=> $comment->getTrick()->getId(), 'slug'=> $comment->getTrick()->getSlug()]),"You are not allowed to edit this comment");
91
+            Throw new RedirectException($this->generateUrl('trick.show', ['id'=> $comment->getTrick()->getId(), 'slug'=> $comment->getTrick()->getSlug()]), "You are not allowed to edit this comment");
92 92
         }
93 93
     }
94 94
 
Please login to merge, or discard this patch.
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.