Skip to content

Commit 853f9e0

Browse files
TomasVotrubanicolas-grekas
authored andcommitted
[cs] correct invalid @param types
1 parent 65384ce commit 853f9e0

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
@@ -245,7 +245,7 @@ final public function normalize($value)
245245
*
246246
* @param $value
247247
*
248-
* @return $value The normalized array value
248+
* @return The normalized array value
249249
*/
250250
protected function preNormalize($value)
251251
{

Definition/Builder/NodeDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ protected function normalization()
327327
/**
328328
* Instantiate and configure the node according to this definition.
329329
*
330-
* @return NodeInterface $node The node instance
330+
* @return NodeInterface The node instance
331331
*
332332
* @throws InvalidDefinitionException When the definition is invalid
333333
*/

0 commit comments

Comments
 (0)