@@ -39,9 +39,7 @@ |
||
39 | 39 | /** |
40 | 40 | * Can receive as many tuples of array( argumentName ), argumentValue as necessary. |
41 | 41 | * |
42 | - * @param $argumentString |
|
43 | - * @param string $dynamicSettingName.. |
|
44 | - * @param string $dynamicSettingValue.. |
|
42 | + * @param string $argumentString |
|
45 | 43 | * |
46 | 44 | * @return string |
47 | 45 | */ |
@@ -111,6 +111,7 @@ discard block |
||
111 | 111 | |
112 | 112 | /** |
113 | 113 | * Applies dependencies of complex $parameter in $scope. |
114 | + * @param string $parameter |
|
114 | 115 | */ |
115 | 116 | private function addComplexParametersDependencies($parameter, $scope, ContainerBuilder $container) |
116 | 117 | { |
@@ -145,6 +146,9 @@ discard block |
||
145 | 146 | } |
146 | 147 | } |
147 | 148 | |
149 | + /** |
|
150 | + * @param string $setting |
|
151 | + */ |
|
148 | 152 | private function postProcessComplexSetting($setting, $sa, ContainerBuilder $container) |
149 | 153 | { |
150 | 154 | $configResolver = $container->get('ezpublish.config.resolver.core'); |
@@ -44,6 +44,9 @@ |
||
44 | 44 | */ |
45 | 45 | private $router; |
46 | 46 | |
47 | + /** |
|
48 | + * @param string $defaultSiteAccess |
|
49 | + */ |
|
47 | 50 | public function __construct(ConfigResolverInterface $configResolver, RouterInterface $router, $defaultSiteAccess, LoggerInterface $logger = null) |
48 | 51 | { |
49 | 52 | $this->configResolver = $configResolver; |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | * |
114 | 114 | * @param string $path The content path |
115 | 115 | * @param array $fields |
116 | - * @param mixed $contentType The content type identifier |
|
116 | + * @param string $contentType The content type identifier |
|
117 | 117 | * |
118 | 118 | * @return mixed location id of the created content |
119 | 119 | */ |
@@ -147,6 +147,7 @@ discard block |
||
147 | 147 | |
148 | 148 | /** |
149 | 149 | * Maps the path of the content to it's name for later use. |
150 | + * @param string $path |
|
150 | 151 | */ |
151 | 152 | private function mapContentPath($path) |
152 | 153 | { |
@@ -228,6 +228,7 @@ |
||
228 | 228 | * |
229 | 229 | * @param string The field name |
230 | 230 | * @param mixed The field value |
231 | + * @param string|null $field |
|
231 | 232 | */ |
232 | 233 | private function createAndPublishContent($field, $value) |
233 | 234 | { |
@@ -161,6 +161,9 @@ discard block |
||
161 | 161 | } |
162 | 162 | } |
163 | 163 | |
164 | + /** |
|
165 | + * @param boolean $commit |
|
166 | + */ |
|
164 | 167 | protected function indexIncrementally(InputInterface $input, OutputInterface $output, $iterationCount, $commit) |
165 | 168 | { |
166 | 169 | if ($contentIds = $input->getOption('content-ids')) { |
@@ -223,6 +226,10 @@ discard block |
||
223 | 226 | $progress->finish(); |
224 | 227 | } |
225 | 228 | |
229 | + /** |
|
230 | + * @param integer $processCount |
|
231 | + * @param integer $iterationCount |
|
232 | + */ |
|
226 | 233 | private function runParallelProcess(ProgressBar $progress, Statement $stmt, $processCount, $iterationCount, $commit) |
227 | 234 | { |
228 | 235 | /** |
@@ -277,7 +284,7 @@ discard block |
||
277 | 284 | } |
278 | 285 | |
279 | 286 | /** |
280 | - * @param mixed $locationId |
|
287 | + * @param integer $locationId |
|
281 | 288 | * @param bool $count |
282 | 289 | * |
283 | 290 | * @return \Doctrine\DBAL\Driver\Statement |
@@ -66,7 +66,7 @@ |
||
66 | 66 | /** |
67 | 67 | * Sets the complete list of view providers. |
68 | 68 | * |
69 | - * @param array $viewProviders |
|
69 | + * @param \PHPUnit\Framework\MockObject\MockObject $viewProviders |
|
70 | 70 | */ |
71 | 71 | public function setViewProviders(array $viewProviders) |
72 | 72 | { |