@@ -40,16 +40,16 @@ discard block |
||
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 |
||
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 | } |
@@ -278,7 +278,7 @@ |
||
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 | } |
@@ -90,11 +90,11 @@ |
||
90 | 90 | return $this; |
91 | 91 | } |
92 | 92 | |
93 | - public function getVideoIntegrationCode(){ |
|
93 | + public function getVideoIntegrationCode() { |
|
94 | 94 | return str_replace("{{code}}", $this->getCode(), $this->getVideoType()->getCode()); |
95 | 95 | } |
96 | 96 | |
97 | - public function getVideoIntegrationImage(){ |
|
97 | + public function getVideoIntegrationImage() { |
|
98 | 98 | return str_replace("{{code}}", $this->getCode(), $this->getVideoType()->getImageCode()); |
99 | 99 | } |
100 | 100 |
@@ -19,14 +19,14 @@ |
||
19 | 19 | parent::__construct($registry, Image::class); |
20 | 20 | } |
21 | 21 | |
22 | - public function findBySearchQuery(array $searchTerms){ |
|
22 | + public function findBySearchQuery(array $searchTerms) { |
|
23 | 23 | |
24 | 24 | $queryBuilder = $this->createQueryBuilder('p'); |
25 | 25 | |
26 | 26 | foreach ($searchTerms as $key => $term) { |
27 | 27 | $queryBuilder |
28 | - ->orWhere('p.title LIKE :term_' . $key) |
|
29 | - ->setParameter('term_' . $key, '%' . $term . '%'); |
|
28 | + ->orWhere('p.title LIKE :term_'.$key) |
|
29 | + ->setParameter('term_'.$key, '%'.$term.'%'); |
|
30 | 30 | |
31 | 31 | } |
32 | 32 |
@@ -19,14 +19,14 @@ |
||
19 | 19 | parent::__construct($registry, Video::class); |
20 | 20 | } |
21 | 21 | |
22 | - public function findBySearchQuery(array $searchTerms){ |
|
22 | + public function findBySearchQuery(array $searchTerms) { |
|
23 | 23 | |
24 | 24 | $queryBuilder = $this->createQueryBuilder('p'); |
25 | 25 | |
26 | 26 | foreach ($searchTerms as $key => $term) { |
27 | 27 | $queryBuilder |
28 | - ->orWhere('p.title LIKE :term_' . $key) |
|
29 | - ->setParameter('term_' . $key, '%' . $term . '%'); |
|
28 | + ->orWhere('p.title LIKE :term_'.$key) |
|
29 | + ->setParameter('term_'.$key, '%'.$term.'%'); |
|
30 | 30 | |
31 | 31 | } |
32 | 32 |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $imageSearch = $this->imageRepository->findBySearchQuery($searchTerms); |
80 | 80 | /** @var Image $image */ |
81 | 81 | foreach ($imageSearch as $image) { |
82 | - if($image->getTrick() !== null){ |
|
82 | + if ($image->getTrick() !== null) { |
|
83 | 83 | $trickList[] = $image->getTrick(); |
84 | 84 | } |
85 | 85 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | $videoSearch = $this->videoRepository->findBySearchQuery($searchTerms); |
89 | 89 | /** @var Video $video */ |
90 | 90 | foreach ($videoSearch as $video) { |
91 | - if($video->getTrick() !== null){ |
|
91 | + if ($video->getTrick() !== null) { |
|
92 | 92 | $trickList[] = $video->getTrick(); |
93 | 93 | } |
94 | 94 | |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | private function extractSearchTerms(string $searchQuery): array |
115 | 115 | { |
116 | 116 | $terms = array_unique(explode(' ', $searchQuery)); |
117 | - return array_filter($terms, function ($term) { |
|
117 | + return array_filter($terms, function($term) { |
|
118 | 118 | return 2 <= mb_strlen($term); |
119 | 119 | }); |
120 | 120 | } |
@@ -38,12 +38,12 @@ |
||
38 | 38 | public function deleteTrickImage(video $video, Request $request) |
39 | 39 | { |
40 | 40 | $submittedToken = $request->request->get('_token'); |
41 | - if (!$this->isCsrfTokenValid('delete-video' . $video->getId(), $submittedToken)) { |
|
41 | + if (!$this->isCsrfTokenValid('delete-video'.$video->getId(), $submittedToken)) { |
|
42 | 42 | throw new RedirectException($this->generateUrl('home'), 'Bad CSRF Token'); |
43 | 43 | } |
44 | 44 | |
45 | 45 | $trick = $video->getTrick(); |
46 | - if($trick !== null){ |
|
46 | + if ($trick !== null) { |
|
47 | 47 | $event = new VideoDeleteEvent($video, $trick); |
48 | 48 | $this->dispatcher->dispatch(VideoDeleteEvent::NAME, $event); |
49 | 49 | } |
@@ -38,12 +38,12 @@ |
||
38 | 38 | public function deleteTrickImage(Image $image, Request $request) |
39 | 39 | { |
40 | 40 | $submittedToken = $request->request->get('_token'); |
41 | - if (!$this->isCsrfTokenValid('delete-image' . $image->getId(), $submittedToken)) { |
|
41 | + if (!$this->isCsrfTokenValid('delete-image'.$image->getId(), $submittedToken)) { |
|
42 | 42 | throw new RedirectException($this->generateUrl('home'), 'Bad CSRF Token'); |
43 | 43 | } |
44 | 44 | |
45 | 45 | $trick = $image->getTrick(); |
46 | - if ($trick !== null){ |
|
46 | + if ($trick !== null) { |
|
47 | 47 | $event = new ImageDeleteEvent($image, $trick); |
48 | 48 | $this->dispatcher->dispatch(ImageDeleteEvent::NAME, $event); |
49 | 49 | } |
@@ -61,7 +61,7 @@ |
||
61 | 61 | $page = $request->get('page') ?? 1; |
62 | 62 | |
63 | 63 | /** @var Paginator $tricks */ |
64 | - $tricks = $this->trickRepository->findLatestEdited($page, (int)$categoryId); |
|
64 | + $tricks = $this->trickRepository->findLatestEdited($page, (int) $categoryId); |
|
65 | 65 | |
66 | 66 | $nextPage = $this->pagePagination->nextPage($tricks, $page, Trick::NUMBER_OF_DISPLAYED_TRICKS); |
67 | 67 |