@@ -38,7 +38,7 @@ |
||
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 |
@@ -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 |
@@ -25,7 +25,7 @@ |
||
25 | 25 | $this->em->persist($trick); |
26 | 26 | $this->em->flush(); |
27 | 27 | |
28 | - $this->addFlash(FlashMessageCategory::SUCCESS, 'Video '. $video->getTitle() .' Added'); |
|
28 | + $this->addFlash(FlashMessageCategory::SUCCESS, 'Video '.$video->getTitle().' Added'); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -23,7 +23,7 @@ |
||
23 | 23 | $this->em->persist($trick); |
24 | 24 | $this->em->flush(); |
25 | 25 | |
26 | - $this->addFlash(FlashMessageCategory::SUCCESS, 'Video '. $video->getTitle() .' deleted'); |
|
26 | + $this->addFlash(FlashMessageCategory::SUCCESS, 'Video '.$video->getTitle().' deleted'); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -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 |
@@ -25,7 +25,7 @@ |
||
25 | 25 | 'required' => true, |
26 | 26 | 'help' => 'the video identifier, usually a unique code following "v="' |
27 | 27 | ]) |
28 | - ->add( 'videoType', EntityType::class, [ |
|
28 | + ->add('videoType', EntityType::class, [ |
|
29 | 29 | 'class' => VideoType::class, |
30 | 30 | 'choice_label' => 'site', |
31 | 31 | ]) |
@@ -108,7 +108,7 @@ |
||
108 | 108 | private function extractSearchTerms(string $searchQuery): array |
109 | 109 | { |
110 | 110 | $terms = array_unique(explode(' ', $searchQuery)); |
111 | - return array_filter($terms, function ($term) { |
|
111 | + return array_filter($terms, function($term) { |
|
112 | 112 | return 2 <= mb_strlen($term); |
113 | 113 | }); |
114 | 114 | } |