@@ -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'); |
@@ -68,7 +68,7 @@ |
||
68 | 68 | /** |
69 | 69 | * Sets the complete list of view providers. |
70 | 70 | * |
71 | - * @param array $viewProviders |
|
71 | + * @param \PHPUnit_Framework_MockObject_MockObject $viewProviders |
|
72 | 72 | */ |
73 | 73 | public function setViewProviders(array $viewProviders) |
74 | 74 | { |
@@ -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; |
@@ -100,7 +100,7 @@ |
||
100 | 100 | /** |
101 | 101 | * Returns an array of allowed IPs for Http PURGE requests. |
102 | 102 | * |
103 | - * @return array |
|
103 | + * @return string[] |
|
104 | 104 | */ |
105 | 105 | protected function getInternalAllowedIPs() |
106 | 106 | { |
@@ -42,7 +42,7 @@ |
||
42 | 42 | /** |
43 | 43 | * Purge all variations generated for aliases in $aliasName. |
44 | 44 | * |
45 | - * @param array $aliasNames |
|
45 | + * @param string[] $aliasNames |
|
46 | 46 | */ |
47 | 47 | public function purge(array $aliasNames) |
48 | 48 | { |
@@ -22,7 +22,7 @@ |
||
22 | 22 | * Return an array of container extensions you need to be registered for each test (usually just the container |
23 | 23 | * extension you are testing. |
24 | 24 | * |
25 | - * @return ExtensionInterface[] |
|
25 | + * @return EzPublishCoreExtension[] |
|
26 | 26 | */ |
27 | 27 | protected function getContainerExtensions() |
28 | 28 | { |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | /** |
122 | 122 | * @dataProvider badRequestExceptionProvider |
123 | 123 | * |
124 | - * @param Exception|\eZ\Publish\Core\Base\Translatable $exception |
|
124 | + * @param Exception $exception |
|
125 | 125 | */ |
126 | 126 | public function testBadRequestException(Exception $exception) |
127 | 127 | { |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | /** |
159 | 159 | * @dataProvider otherExceptionProvider |
160 | 160 | * |
161 | - * @param Exception|\eZ\Publish\Core\Base\Translatable $exception |
|
161 | + * @param Exception $exception |
|
162 | 162 | */ |
163 | 163 | public function testOtherRepositoryException(Exception $exception) |
164 | 164 | { |
@@ -48,7 +48,7 @@ |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
51 | - * @param array $mockedMethods |
|
51 | + * @param string[] $mockedMethods |
|
52 | 52 | * |
53 | 53 | * @return \PHPUnit_Framework_MockObject_MockObject|DefaultRouter |
54 | 54 | */ |