@@ -38,7 +38,7 @@ |
||
38 | 38 | * @param UserInterface $user |
39 | 39 | * @param string|null $apiKeyValue |
40 | 40 | * |
41 | - * @return mixed |
|
41 | + * @return ApiKeyInterface |
|
42 | 42 | */ |
43 | 43 | public function create($user, $apiKeyValue = null) |
44 | 44 | { |
@@ -99,7 +99,7 @@ |
||
99 | 99 | /** |
100 | 100 | * @param string $uri |
101 | 101 | * |
102 | - * @return mixed |
|
102 | + * @return string |
|
103 | 103 | */ |
104 | 104 | private function createExternalRequest(string $uri) |
105 | 105 | { |
@@ -196,7 +196,7 @@ |
||
196 | 196 | */ |
197 | 197 | private function getArrayOfIdsFromRoutesArray(array $routes): array |
198 | 198 | { |
199 | - return array_map(function ($route) { |
|
199 | + return array_map(function($route) { |
|
200 | 200 | return $route->getId(); |
201 | 201 | }, $routes); |
202 | 202 | } |
@@ -21,6 +21,7 @@ discard block |
||
21 | 21 | { |
22 | 22 | /** |
23 | 23 | * @param string $name |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function setName($name); |
26 | 27 | |
@@ -61,6 +62,7 @@ discard block |
||
61 | 62 | |
62 | 63 | /** |
63 | 64 | * @param array $settings |
65 | + * @return void |
|
64 | 66 | */ |
65 | 67 | public function setSettings(array $settings): void; |
66 | 68 | |
@@ -71,6 +73,7 @@ discard block |
||
71 | 73 | |
72 | 74 | /** |
73 | 75 | * @param \SplFileInfo|null $file |
76 | + * @return void |
|
74 | 77 | */ |
75 | 78 | public function setLogo(?\SplFileInfo $file): void; |
76 | 79 | |
@@ -86,6 +89,7 @@ discard block |
||
86 | 89 | |
87 | 90 | /** |
88 | 91 | * @param string|null $path |
92 | + * @return void |
|
89 | 93 | */ |
90 | 94 | public function setLogoPath(?string $path): void; |
91 | 95 | } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | ]) |
29 | 29 | ; |
30 | 30 | |
31 | - $formModifier = function (FormInterface $form, ?string $type) { |
|
31 | + $formModifier = function(FormInterface $form, ?string $type) { |
|
32 | 32 | if (OutputChannelInterface::TYPE_WORDPRESS === $type) { |
33 | 33 | $form->add('config', WordpressOutputChannelConfigType::class); |
34 | 34 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | $builder->addEventListener( |
38 | 38 | FormEvents::POST_SET_DATA, |
39 | - function (FormEvent $event) use ($formModifier) { |
|
39 | + function(FormEvent $event) use ($formModifier) { |
|
40 | 40 | $data = $event->getData(); |
41 | 41 | if (null !== $event->getData()) { |
42 | 42 | $formModifier($event->getForm(), $data->getType()); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | $builder->get('type')->addEventListener( |
48 | 48 | FormEvents::POST_SUBMIT, |
49 | - function (FormEvent $event) use ($formModifier) { |
|
49 | + function(FormEvent $event) use ($formModifier) { |
|
50 | 50 | $type = $event->getForm()->getData(); |
51 | 51 | |
52 | 52 | $formModifier($event->getForm()->getParent(), $type); |
@@ -129,7 +129,6 @@ |
||
129 | 129 | |
130 | 130 | /** |
131 | 131 | * @param string $name |
132 | - * @param bool $disabled |
|
133 | 132 | * |
134 | 133 | * @return OrganizationInterface |
135 | 134 | */ |
@@ -111,7 +111,7 @@ |
||
111 | 111 | { |
112 | 112 | if (!$input->getArgument($name)) { |
113 | 113 | $question = new Question(sprintf('<question>Please enter %s:</question>', $name)); |
114 | - $question->setValidator(function ($argument) use ($name) { |
|
114 | + $question->setValidator(function($argument) use ($name) { |
|
115 | 115 | if (empty($argument)) { |
116 | 116 | throw new \RuntimeException(sprintf('The %s can not be empty', $name)); |
117 | 117 | } |
@@ -64,10 +64,10 @@ |
||
64 | 64 | |
65 | 65 | $builder->get('filters') |
66 | 66 | ->addModelTransformer(new CallbackTransformer( |
67 | - function ($value) { |
|
67 | + function($value) { |
|
68 | 68 | return json_encode($value); |
69 | 69 | }, |
70 | - function ($value) { |
|
70 | + function($value) { |
|
71 | 71 | if (is_array($value)) { |
72 | 72 | return $value; |
73 | 73 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | ->scalarNode('value') |
77 | 77 | ->beforeNormalization() |
78 | 78 | ->ifArray() |
79 | - ->then(function ($value) { |
|
79 | + ->then(function($value) { |
|
80 | 80 | return json_encode($value); |
81 | 81 | }) |
82 | 82 | ->end() |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | ->scalarNode('type') |
86 | 86 | ->defaultValue('string') |
87 | 87 | ->validate() |
88 | - ->always(function ($v) { |
|
88 | + ->always(function($v) { |
|
89 | 89 | if (!in_array($v, ['string', 'array', 'boolean'])) { |
90 | 90 | throw new InvalidTypeException(); |
91 | 91 | } |
@@ -40,10 +40,10 @@ |
||
40 | 40 | ; |
41 | 41 | |
42 | 42 | $builder->get('value')->addModelTransformer(new CallbackTransformer( |
43 | - function ($value) { |
|
43 | + function($value) { |
|
44 | 44 | return $value; |
45 | 45 | }, |
46 | - function ($value) { |
|
46 | + function($value) { |
|
47 | 47 | $allowed = ['true', 'false', '1', '0', null]; |
48 | 48 | |
49 | 49 | if (\is_bool($value) || \in_array($value, $allowed, true)) { |