minor #24371 [DI] Fix TypeHint of ParametersConfigurator::set() (smoench)

This PR was merged into the 3.4 branch.

Discussion
----------

[DI] Fix TypeHint of ParametersConfigurator::set()

| Q             | A
| ------------- | ---
| Branch?       | 3.4  <!-- see comment below -->
| Bug fix?      | yes
| New feature?  | no <!-- don't forget updating src/**/CHANGELOG.md files -->
| BC breaks?    | no
| Deprecations? | no <!-- don't forget updating UPGRADE-*.md files -->
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        | <!--highly recommended for new features-->

Use TypeHint of `Symfony\Component\DependencyInjection\Loader\ConfiguratorAbstractConfigurator::processValue` instead of `string`

Commits
-------

1c0701a [DI] Fix typehint
This commit is contained in:
Nicolas Grekas 2017-09-29 12:25:16 +02:00
commit ace6464d5c

View File

@ -31,7 +31,7 @@ class ParametersConfigurator extends AbstractConfigurator
* Creates a parameter.
*
* @param string $name
* @param string $value
* @param mixed $value
*
* @return $this
*/
@ -46,7 +46,7 @@ class ParametersConfigurator extends AbstractConfigurator
* Creates a parameter.
*
* @param string $name
* @param string $value
* @param mixed $value
*
* @return $this
*/