minor #29523 [Hackday][DependencyInjection] Doc block for ContainerBagInterface and ParameterBagInterface (gyszucs)

This PR was submitted for the master branch but it was merged into the 4.2 branch instead (closes #29523).

Discussion
----------

[Hackday][DependencyInjection] Doc block for ContainerBagInterface and ParameterBagInterface

| Q             | A
| ------------- | ---
| Branch?       | master for features
| Bug fix?      | no
| New feature?  | yes
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| License       | MIT

Added proper doc to `ContainerBagInterface` and `ParameterBagInterface` so `bin//console debug:autowiring` can show it.

#SymfonyConHackday2018

Commits
-------

88c9fc6f45 Added docblock to ContainerBagInterface and ParameterBagInterface
This commit is contained in:
Christophe Coevoet 2018-12-08 16:34:14 +01:00
commit 43c04461ae
2 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,8 @@ use Psr\Container\ContainerInterface;
use Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException;
/**
* ContainerBagInterface is the interface implemented by objects that manage service container parameters.
*
* @author Nicolas Grekas <p@tchwork.com>
*/
interface ContainerBagInterface extends ContainerInterface

View File

@ -15,7 +15,7 @@ use Symfony\Component\DependencyInjection\Exception\LogicException;
use Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException;
/**
* ParameterBagInterface.
* ParameterBagInterface is the interface implemented by objects that manage service container parameters.
*
* @author Fabien Potencier <fabien@symfony.com>
*/