Skip to content

Commit cfa0b11

Browse files
fabpotnicolas-grekas
authored andcommitted
Remove unneeded phpdocs
1 parent 096440b commit cfa0b11

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

Definition/Builder/TreeBuilder.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,8 @@ public function __construct(string $name = null, string $type = 'array', NodeBui
3737
/**
3838
* Creates the root node.
3939
*
40-
* @param string $name The name of the root node
41-
* @param string $type The type of the root node
42-
* @param NodeBuilder $builder A custom node builder instance
40+
* @param string $name The name of the root node
41+
* @param string $type The type of the root node
4342
*
4443
* @return ArrayNodeDefinition|NodeDefinition The root node (as an ArrayNodeDefinition when the type is 'array')
4544
*

Definition/Processor.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ class Processor
2323
/**
2424
* Processes an array of configurations.
2525
*
26-
* @param NodeInterface $configTree The node tree describing the configuration
27-
* @param array $configs An array of configuration items to process
26+
* @param array $configs An array of configuration items to process
2827
*
2928
* @return array The processed configuration
3029
*/
@@ -42,8 +41,7 @@ public function process(NodeInterface $configTree, array $configs)
4241
/**
4342
* Processes an array of configurations.
4443
*
45-
* @param ConfigurationInterface $configuration The configuration class
46-
* @param array $configs An array of configuration items to process
44+
* @param array $configs An array of configuration items to process
4745
*
4846
* @return array The processed configuration
4947
*/

ResourceCheckerInterface.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,14 @@ interface ResourceCheckerInterface
3030
* Queries the ResourceChecker whether it can validate a given
3131
* resource or not.
3232
*
33-
* @param ResourceInterface $metadata The resource to be checked for freshness
34-
*
3533
* @return bool True if the ResourceChecker can handle this resource type, false if not
3634
*/
3735
public function supports(ResourceInterface $metadata);
3836

3937
/**
4038
* Validates the resource.
4139
*
42-
* @param ResourceInterface $resource The resource to be validated
43-
* @param int $timestamp The timestamp at which the cache associated with this resource was created
40+
* @param int $timestamp The timestamp at which the cache associated with this resource was created
4441
*
4542
* @return bool True if the resource has not changed since the given timestamp, false otherwise
4643
*/

0 commit comments

Comments
 (0)