Skip to content

Commit 734fc71

Browse files
Merge branch '2.8' into 3.4
* 2.8: [cs] correct invalid @param types
2 parents 3f7b37d + 853f9e0 commit 734fc71

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ConfigCacheFactoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface ConfigCacheFactoryInterface
2626
* @param string $file The absolute cache file path
2727
* @param callable $callable The callable to be executed when the cache needs to be filled (i. e. is not fresh). The cache will be passed as the only parameter to this callback
2828
*
29-
* @return ConfigCacheInterface $configCache The cache instance
29+
* @return ConfigCacheInterface The cache instance
3030
*/
3131
public function cache($file, $callable);
3232
}

Definition/ArrayNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function setXmlRemappings(array $remappings)
9292
/**
9393
* Gets the xml remappings that should be performed.
9494
*
95-
* @return array $remappings an array of the form array(array(string, string))
95+
* @return array an array of the form array(array(string, string))
9696
*/
9797
public function getXmlRemappings()
9898
{

Definition/BaseNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ final public function normalize($value)
282282
*
283283
* @param $value
284284
*
285-
* @return $value The normalized array value
285+
* @return The normalized array value
286286
*/
287287
protected function preNormalize($value)
288288
{

Definition/Builder/NodeDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ protected function normalization()
345345
/**
346346
* Instantiate and configure the node according to this definition.
347347
*
348-
* @return NodeInterface $node The node instance
348+
* @return NodeInterface The node instance
349349
*
350350
* @throws InvalidDefinitionException When the definition is invalid
351351
*/

0 commit comments

Comments
 (0)