@@ -46,8 +46,8 @@ |
||
46 | 46 | ->end() |
47 | 47 | ->arrayNode('persistence') |
48 | 48 | ->validate() |
49 | - ->ifTrue(function ($v) { |
|
50 | - return count(array_filter($v, function ($persistence) { |
|
49 | + ->ifTrue(function($v) { |
|
50 | + return count(array_filter($v, function($persistence) { |
|
51 | 51 | return $persistence['enabled']; |
52 | 52 | })) > 1; |
53 | 53 | }) |
@@ -50,7 +50,7 @@ |
||
50 | 50 | public function configureOptions(OptionsResolver $resolver) |
51 | 51 | { |
52 | 52 | $resolver |
53 | - ->setNormalizer('choices', function () { |
|
53 | + ->setNormalizer('choices', function() { |
|
54 | 54 | /** @var OrganizationInterface[] $organizations */ |
55 | 55 | $organizations = $this->organizationRepository->findAvailable(); |
56 | 56 | $choices = []; |
@@ -40,7 +40,7 @@ |
||
40 | 40 | public function configureOptions(OptionsResolver $resolver) |
41 | 41 | { |
42 | 42 | $resolver |
43 | - ->setNormalizer('choices', function () { |
|
43 | + ->setNormalizer('choices', function() { |
|
44 | 44 | /** @var ThemeInterface[] $themes */ |
45 | 45 | $themes = $this->themeProvider->getCurrentTenantAvailableThemes(); |
46 | 46 | $choices = []; |
@@ -115,7 +115,7 @@ |
||
115 | 115 | |
116 | 116 | $tenant = reset($tenants); |
117 | 117 | if ($numTenants > 1) { |
118 | - $tenantNames = array_map(function ($tenant) { |
|
118 | + $tenantNames = array_map(function($tenant) { |
|
119 | 119 | return $tenant->getName(); |
120 | 120 | }, $tenants); |
121 | 121 |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | * @param InputInterface $input |
187 | 187 | * @param OutputInterface $output |
188 | 188 | * @param Tenant $tenant |
189 | - * @param $themeDir |
|
189 | + * @param string $themeDir |
|
190 | 190 | * @param $themeName |
191 | 191 | */ |
192 | 192 | protected function writeConfigFile(InputInterface $input, OutputInterface $output, Tenant $tenant, $themeDir, $themeName) |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | |
279 | 279 | /** |
280 | 280 | * @param Filesystem $filesystem |
281 | - * @param $baseDir |
|
281 | + * @param string $baseDir |
|
282 | 282 | * @param $fileName |
283 | 283 | * |
284 | 284 | * @return string |
@@ -144,7 +144,7 @@ |
||
144 | 144 | * @param $subdomain |
145 | 145 | * @param $name |
146 | 146 | * @param $disabled |
147 | - * @param $organization |
|
147 | + * @param OrganizationInterface $organization |
|
148 | 148 | * |
149 | 149 | * @return TenantInterface |
150 | 150 | */ |
@@ -131,7 +131,7 @@ |
||
131 | 131 | $default = $input->getOption('default'); |
132 | 132 | if (!$input->getArgument($name) && !$default && $name !== $this->arguments[1]) { |
133 | 133 | $question = new Question(sprintf('<question>Please enter %s:</question>', $name)); |
134 | - $question->setValidator(function ($argument) use ($name) { |
|
134 | + $question->setValidator(function($argument) use ($name) { |
|
135 | 135 | if (empty($argument)) { |
136 | 136 | throw new \RuntimeException(sprintf('The %s can not be empty', $name)); |
137 | 137 | } |
@@ -91,10 +91,10 @@ |
||
91 | 91 | |
92 | 92 | $builder->get('cacheTimeInSeconds') |
93 | 93 | ->addModelTransformer(new CallbackTransformer( |
94 | - function ($value) { |
|
94 | + function($value) { |
|
95 | 95 | return $value; |
96 | 96 | }, |
97 | - function ($value) { |
|
97 | + function($value) { |
|
98 | 98 | return (int) $value; |
99 | 99 | } |
100 | 100 | )) |
@@ -51,7 +51,7 @@ |
||
51 | 51 | return true; |
52 | 52 | } |
53 | 53 | |
54 | - $this->logger->error(implode(', ', array_map(function ($error) { |
|
54 | + $this->logger->error(implode(', ', array_map(function($error) { |
|
55 | 55 | return sprintf('"%s" %s', $error['property'], $error['message']); |
56 | 56 | }, $validator->getErrors()))); |
57 | 57 |
@@ -46,6 +46,9 @@ discard block |
||
46 | 46 | $manager->flush(); |
47 | 47 | } |
48 | 48 | |
49 | + /** |
|
50 | + * @param string $env |
|
51 | + */ |
|
49 | 52 | public function loadRoutes($env, ObjectManager $manager) |
50 | 53 | { |
51 | 54 | $routes = [ |
@@ -95,6 +98,10 @@ discard block |
||
95 | 98 | $manager->flush(); |
96 | 99 | } |
97 | 100 | |
101 | + /** |
|
102 | + * @param string $env |
|
103 | + * @param ObjectManager $manager |
|
104 | + */ |
|
98 | 105 | public function setRoutesContent($env, $manager) |
99 | 106 | { |
100 | 107 | $routes = [ |
@@ -118,6 +125,10 @@ discard block |
||
118 | 125 | } |
119 | 126 | } |
120 | 127 | |
128 | + /** |
|
129 | + * @param string $env |
|
130 | + * @param ObjectManager $manager |
|
131 | + */ |
|
121 | 132 | public function loadArticles($env, $manager) |
122 | 133 | { |
123 | 134 | $articles = [ |
@@ -61,7 +61,7 @@ |
||
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
64 | - * @param $filePath |
|
64 | + * @param string $filePath |
|
65 | 65 | * |
66 | 66 | * @return Response |
67 | 67 | */ |
@@ -152,7 +152,7 @@ |
||
152 | 152 | { |
153 | 153 | $themes = array_filter( |
154 | 154 | $loadedThemes, |
155 | - function ($element) use (&$themeName) { |
|
155 | + function($element) use (&$themeName) { |
|
156 | 156 | return $element->getName() === $themeName; |
157 | 157 | } |
158 | 158 | ); |