Test Failed
Push — develop ( b6bcb0...94eac1 )
by Stone
04:43
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/Entity/User.php 1 patch
Spacing   +4 added lines, -4 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
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 
185 185
     public function getImage()
186 186
     {
187
-        if($this->image === ""){
187
+        if ($this->image === "") {
188 188
             return "";
189 189
         }
190 190
         return $this->image;
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
             $this->verified,
344 344
             $this->verifiedDateTime,
345 345
             $this->updatedAt,
346
-            )=unserialize($serialized, ['allowed_classes' => false]);
346
+            ) = unserialize($serialized, ['allowed_classes' => false]);
347 347
     }
348 348
 
349 349
     /**
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/Form/Type/CommentType.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 CommentType extends AbstractType{
12
+class CommentType extends AbstractType {
13 13
 
14 14
     public function buildForm(FormBuilderInterface $builder, array $options)
15 15
     {
Please login to merge, or discard this patch.
src/Controller/Trick/Admin/EditTrickController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     private $tagRepository;
43 43
 
44
-    public function __construct(EventDispatcherInterface $dispatcher, TrickHistory $trickHistory, TagRepository $tagRepository )
44
+    public function __construct(EventDispatcherInterface $dispatcher, TrickHistory $trickHistory, TagRepository $tagRepository)
45 45
     {
46 46
         $this->dispatcher = $dispatcher;
47 47
         $this->trickHistory = $trickHistory;
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.