@@ -57,7 +57,7 @@ |
||
57 | 57 | public function configureOptions(OptionsResolver $resolver) |
58 | 58 | { |
59 | 59 | $resolver->setDefaults([ |
60 | - 'choices' => function (Options $options) { |
|
60 | + 'choices' => function(Options $options) { |
|
61 | 61 | return $this->tenantRepository->findAll(); |
62 | 62 | }, |
63 | 63 | 'choice_value' => 'code', |
@@ -53,7 +53,7 @@ |
||
53 | 53 | |
54 | 54 | public function getAuthorsNames(): array |
55 | 55 | { |
56 | - return array_map(function ($author) { |
|
56 | + return array_map(function($author) { |
|
57 | 57 | return $author->getName(); |
58 | 58 | }, $this->authors->toArray()); |
59 | 59 | } |
@@ -76,7 +76,7 @@ |
||
76 | 76 | * @param TenantContextInterface $tenantContext |
77 | 77 | * @param ReloadableThemeRepositoryInterface $themeRepository |
78 | 78 | * @param TenantAwareThemeContextInterface $themeContext |
79 | - * @param TenantRepositoryInterface $tenantRepositorys |
|
79 | + * @param TenantRepositoryInterface $tenantRepository |
|
80 | 80 | */ |
81 | 81 | public function __construct( |
82 | 82 | ThemeInstallerInterface $themeInstaller, |
@@ -65,7 +65,7 @@ |
||
65 | 65 | public function registerPeriodicTimer(Topic $topic) |
66 | 66 | { |
67 | 67 | $n = 1; |
68 | - $this->periodicTimer->addPeriodicTimer($this, 'ping', 5, function () use ($topic, &$n) { |
|
68 | + $this->periodicTimer->addPeriodicTimer($this, 'ping', 5, function() use ($topic, &$n) { |
|
69 | 69 | $topic->broadcast(['ping' => $n]); |
70 | 70 | |
71 | 71 | ++$n; |
@@ -35,7 +35,6 @@ |
||
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
38 | - * @param Meta $meta |
|
39 | 38 | * |
40 | 39 | * @return string|void |
41 | 40 | */ |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
62 | - * @param $paths |
|
62 | + * @param string[] $paths |
|
63 | 63 | * |
64 | 64 | * @return mixed |
65 | 65 | */ |
@@ -108,6 +108,9 @@ discard block |
||
108 | 108 | return $this->getTenantPrefix(self::DEFAULT_TENANT_DOMAIN).'/'.ltrim($id, '/'); |
109 | 109 | } |
110 | 110 | |
111 | + /** |
|
112 | + * @return null|\SWP\Bundle\ContentBundle\Model\RouteInterface |
|
113 | + */ |
|
111 | 114 | public function getRouteByName($id) |
112 | 115 | { |
113 | 116 | return $this->container->get('swp.provider.route')->getRouteByName($id); |
@@ -116,7 +119,7 @@ discard block |
||
116 | 119 | /** |
117 | 120 | * Gets current tenant's prefix. |
118 | 121 | * |
119 | - * @param string $subdomain |
|
122 | + * @param string $domain |
|
120 | 123 | * |
121 | 124 | * @return string |
122 | 125 | */ |
@@ -177,6 +177,9 @@ |
||
177 | 177 | return ArticleEventInterface::PAGEVIEW_SOURCE_EXTERNAL; |
178 | 178 | } |
179 | 179 | |
180 | + /** |
|
181 | + * @return string |
|
182 | + */ |
|
180 | 183 | private function getFragmentFromUrl(string $url, string $fragment): ?string |
181 | 184 | { |
182 | 185 | $fragments = \parse_url($url); |
@@ -53,7 +53,7 @@ |
||
53 | 53 | |
54 | 54 | public function getKeywordsNames(): array |
55 | 55 | { |
56 | - return array_map(function ($keyword) { |
|
56 | + return array_map(function($keyword) { |
|
57 | 57 | return $keyword->getName(); |
58 | 58 | }, $this->keywords->toArray()); |
59 | 59 | } |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | |
385 | 385 | private function mapNames(array $values): array |
386 | 386 | { |
387 | - return array_map(function ($subject) { |
|
387 | + return array_map(function($subject) { |
|
388 | 388 | if (\is_array($subject) && \array_key_exists('name', $subject)) { |
389 | 389 | return $subject['name']; |
390 | 390 | } |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | |
396 | 396 | private function mapCodes(array $values): array |
397 | 397 | { |
398 | - return array_map(function ($subject) { |
|
398 | + return array_map(function($subject) { |
|
399 | 399 | if (\is_array($subject) && \array_key_exists('code', $subject)) { |
400 | 400 | return $subject['code']; |
401 | 401 | } |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | |
407 | 407 | private function mapSchemes(array $values): array |
408 | 408 | { |
409 | - return array_map(function ($subject) { |
|
409 | + return array_map(function($subject) { |
|
410 | 410 | if (\is_array($subject) && \array_key_exists('scheme', $subject)) { |
411 | 411 | return $subject['scheme']; |
412 | 412 | } |