@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | /** |
113 | 113 | * Tests if the value is in an array. |
114 | 114 | * |
115 | - * @param array $array |
|
115 | + * @param string[] $array |
|
116 | 116 | * |
117 | 117 | * @return ExprBuilder |
118 | 118 | */ |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | /** |
127 | 127 | * Tests if the value is not in an array. |
128 | 128 | * |
129 | - * @param array $array |
|
129 | + * @param string[] $array |
|
130 | 130 | * |
131 | 131 | * @return ExprBuilder |
132 | 132 | */ |
@@ -26,6 +26,9 @@ |
||
26 | 26 | { |
27 | 27 | private $reference; |
28 | 28 | |
29 | + /** |
|
30 | + * @param string $namespace |
|
31 | + */ |
|
29 | 32 | public function dump(ConfigurationInterface $configuration, $namespace = null) |
30 | 33 | { |
31 | 34 | return $this->dumpNode($configuration->getConfigTreeBuilder()->buildTree(), $namespace); |
@@ -178,6 +178,9 @@ |
||
178 | 178 | $this->reference .= sprintf($format, $text)."\n"; |
179 | 179 | } |
180 | 180 | |
181 | + /** |
|
182 | + * @param integer $depth |
|
183 | + */ |
|
181 | 184 | private function writeArray(array $array, $depth) |
182 | 185 | { |
183 | 186 | $isIndexed = array_values($array) === $array; |
@@ -197,6 +197,10 @@ |
||
197 | 197 | ); |
198 | 198 | } |
199 | 199 | |
200 | + /** |
|
201 | + * @param ArrayNodeDefinition $object |
|
202 | + * @param string $field |
|
203 | + */ |
|
200 | 204 | protected function getField($object, $field) |
201 | 205 | { |
202 | 206 | $reflection = new \ReflectionProperty($object, $field); |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | /** |
154 | 154 | * Create a test treebuilder with a variable node, and init the validation. |
155 | 155 | * |
156 | - * @return TreeBuilder |
|
156 | + * @return \Symfony\Component\Config\Definition\Builder\ExprBuilder |
|
157 | 157 | */ |
158 | 158 | protected function getTestBuilder() |
159 | 159 | { |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | /** |
191 | 191 | * Return a closure that will return the given value. |
192 | 192 | * |
193 | - * @param mixed $val The value that the closure must return |
|
193 | + * @param string $val The value that the closure must return |
|
194 | 194 | * |
195 | 195 | * @return \Closure |
196 | 196 | */ |
@@ -207,6 +207,9 @@ |
||
207 | 207 | self::assertSame($normalized, $tree->normalize($denormalized)); |
208 | 208 | } |
209 | 209 | |
210 | + /** |
|
211 | + * @return NodeInterface |
|
212 | + */ |
|
210 | 213 | private function getNumericKeysTestTree() |
211 | 214 | { |
212 | 215 | $tb = new TreeBuilder(); |
@@ -34,6 +34,9 @@ |
||
34 | 34 | $this->removeDirectory($this->directory); |
35 | 35 | } |
36 | 36 | |
37 | + /** |
|
38 | + * @param string $directory |
|
39 | + */ |
|
37 | 40 | protected function removeDirectory($directory) |
38 | 41 | { |
39 | 42 | $iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($directory), \RecursiveIteratorIterator::CHILD_FIRST); |
@@ -216,6 +216,9 @@ |
||
216 | 216 | } |
217 | 217 | } |
218 | 218 | |
219 | + /** |
|
220 | + * @param boolean $internalErrors |
|
221 | + */ |
|
219 | 222 | protected static function getXmlErrors($internalErrors) |
220 | 223 | { |
221 | 224 | $errors = array(); |
@@ -1022,6 +1022,9 @@ discard block |
||
1022 | 1022 | $this->defaultCommand = $commandName; |
1023 | 1023 | } |
1024 | 1024 | |
1025 | + /** |
|
1026 | + * @param string $string |
|
1027 | + */ |
|
1025 | 1028 | private function stringWidth($string) |
1026 | 1029 | { |
1027 | 1030 | if (false === $encoding = mb_detect_encoding($string, null, true)) { |
@@ -1031,6 +1034,9 @@ discard block |
||
1031 | 1034 | return mb_strwidth($string, $encoding); |
1032 | 1035 | } |
1033 | 1036 | |
1037 | + /** |
|
1038 | + * @param integer $width |
|
1039 | + */ |
|
1034 | 1040 | private function splitStringByWidth($string, $width) |
1035 | 1041 | { |
1036 | 1042 | // str_split is not suitable for multi-byte characters, we should use preg_split to get char array properly. |