Passed
Push — develop ( ebcaaf...77fe2b )
by Stone
09:15
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/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/images',400,300, null, false) )
36
+            ->setImage($faker->image('public/uploads/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/images',400,300, null, false) )
50
+            ->setImage($faker->image('public/uploads/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/images',400,300, null, false) );
86
+            if (rand(0, 2) >= 1) {
87
+                $user->setImage($faker->image('public/uploads/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/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/Controller/Trick/Admin/DeleteTrickController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,18 +40,18 @@
 block discarded – undo
40 40
     {
41 41
 
42 42
         $submittedToken = $request->request->get('_token');
43
-        if (!$this->isCsrfTokenValid('delete-trick' . $trick->getId(), $submittedToken)) {
43
+        if (!$this->isCsrfTokenValid('delete-trick'.$trick->getId(), $submittedToken)) {
44 44
             throw new RedirectException($this->generateUrl('home'), 'Bad CSRF Token');
45 45
         }
46 46
 
47 47
         $referer = $request->headers->get('referer');
48
-        $url = $this->generateUrl('trick.show',['id'=>$trick->getId(), 'slug'=>$trick->getSlug()]);
48
+        $url = $this->generateUrl('trick.show', ['id'=>$trick->getId(), 'slug'=>$trick->getSlug()]);
49 49
 
50 50
         $event = new TrickDeletedEvent($trick);
51 51
         $this->dispatcher->dispatch(TrickDeletedEvent::NAME, $event);
52 52
 
53 53
         //If we came from the show page, go to home page
54
-        if(mb_substr_count($referer, $url)>0)
54
+        if (mb_substr_count($referer, $url) > 0)
55 55
         {
56 56
             return $this->redirectToRoute('home');
57 57
         }
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,22 +40,22 @@
 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
                     }
55 55
 
56 56
                     $trick->addTag($tag);
57 57
 
58
-                    if(rand(0,6)===1){
58
+                    if (rand(0, 6) === 1) {
59 59
                         $trick->addTag($fixedTag);
60 60
                     }
61 61
                 }
Please login to merge, or discard this patch.