@@ -106,7 +106,7 @@ |
||
106 | 106 | |
107 | 107 | $tenant = reset($tenants); |
108 | 108 | if ($numTenants > 1) { |
109 | - $tenantNames = array_map(function ($tenant) { |
|
109 | + $tenantNames = array_map(function($tenant) { |
|
110 | 110 | return $tenant->getName(); |
111 | 111 | }, $tenants); |
112 | 112 |
@@ -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 |
@@ -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 = []; |
@@ -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 | }) |
@@ -145,7 +145,7 @@ |
||
145 | 145 | * @param $subdomain |
146 | 146 | * @param $name |
147 | 147 | * @param $disabled |
148 | - * @param $organization |
|
148 | + * @param OrganizationInterface $organization |
|
149 | 149 | * |
150 | 150 | * @return TenantInterface |
151 | 151 | */ |
@@ -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 = [ |
@@ -63,7 +63,7 @@ |
||
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
66 | - * @param $filePath |
|
66 | + * @param string $filePath |
|
67 | 67 | * |
68 | 68 | * @return Response |
69 | 69 | */ |
@@ -138,7 +138,7 @@ |
||
138 | 138 | { |
139 | 139 | $themes = array_filter( |
140 | 140 | $loadedThemes, |
141 | - function ($element) use (&$themeName) { |
|
141 | + function($element) use (&$themeName) { |
|
142 | 142 | return $element->getName() === $themeName; |
143 | 143 | } |
144 | 144 | ); |