* * 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 */ 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); }