@@ -44,7 +44,7 @@ |
||
44 | 44 | */ |
45 | 45 | private $tagSerializer; |
46 | 46 | |
47 | - public function __construct(EventDispatcherInterface $dispatcher, TrickHistory $trickHistory, TagRepository $tagRepository, TagSerializer $tagSerializer ) |
|
47 | + public function __construct(EventDispatcherInterface $dispatcher, TrickHistory $trickHistory, TagRepository $tagRepository, TagSerializer $tagSerializer) |
|
48 | 48 | { |
49 | 49 | $this->dispatcher = $dispatcher; |
50 | 50 | $this->trickHistory = $trickHistory; |
@@ -176,7 +176,7 @@ |
||
176 | 176 | return $this->tags; |
177 | 177 | } |
178 | 178 | |
179 | - public function getTagsJson(){ |
|
179 | + public function getTagsJson() { |
|
180 | 180 | |
181 | 181 | $tagSerializer = new TagSerializer(); |
182 | 182 | return $tagSerializer->trickTagsJson($this); |
@@ -34,7 +34,7 @@ |
||
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 | } |
@@ -9,7 +9,7 @@ |
||
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 | { |
@@ -20,7 +20,7 @@ |
||
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 |