12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace Symfony\Components\DependencyInjection;
- /*
- * This file is part of the symfony framework.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- /**
- * AnnotatedContainerInterface is the interface implemented when a container knows how to deals with annotations.
- *
- * @package symfony
- * @subpackage dependency_injection
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- */
- interface AnnotatedContainerInterface
- {
- /**
- * Returns service ids for a given annotation.
- *
- * @param string $name The annotation name
- *
- * @return array An array of annotations
- */
- public function findAnnotatedServiceIds($name);
- }
|