annotate vendor/symfony/dependency-injection/ContainerInterface.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children 1fec387a4317
rev   line source
Chris@0 1 <?php
Chris@0 2
Chris@0 3 /*
Chris@0 4 * This file is part of the Symfony package.
Chris@0 5 *
Chris@0 6 * (c) Fabien Potencier <fabien@symfony.com>
Chris@0 7 *
Chris@0 8 * For the full copyright and license information, please view the LICENSE
Chris@0 9 * file that was distributed with this source code.
Chris@0 10 */
Chris@0 11
Chris@0 12 namespace Symfony\Component\DependencyInjection;
Chris@0 13
Chris@0 14 use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
Chris@0 15 use Symfony\Component\DependencyInjection\Exception\ServiceCircularReferenceException;
Chris@0 16 use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;
Chris@0 17
Chris@0 18 /**
Chris@0 19 * ContainerInterface is the interface implemented by service container classes.
Chris@0 20 *
Chris@0 21 * @author Fabien Potencier <fabien@symfony.com>
Chris@0 22 * @author Johannes M. Schmitt <schmittjoh@gmail.com>
Chris@0 23 */
Chris@0 24 interface ContainerInterface
Chris@0 25 {
Chris@0 26 const EXCEPTION_ON_INVALID_REFERENCE = 1;
Chris@0 27 const NULL_ON_INVALID_REFERENCE = 2;
Chris@0 28 const IGNORE_ON_INVALID_REFERENCE = 3;
Chris@0 29
Chris@0 30 /**
Chris@0 31 * Sets a service.
Chris@0 32 *
Chris@0 33 * @param string $id The service identifier
Chris@0 34 * @param object $service The service instance
Chris@0 35 */
Chris@0 36 public function set($id, $service);
Chris@0 37
Chris@0 38 /**
Chris@0 39 * Gets a service.
Chris@0 40 *
Chris@0 41 * @param string $id The service identifier
Chris@0 42 * @param int $invalidBehavior The behavior when the service does not exist
Chris@0 43 *
Chris@0 44 * @return object The associated service
Chris@0 45 *
Chris@0 46 * @throws ServiceCircularReferenceException When a circular reference is detected
Chris@0 47 * @throws ServiceNotFoundException When the service is not defined
Chris@0 48 *
Chris@0 49 * @see Reference
Chris@0 50 */
Chris@0 51 public function get($id, $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE);
Chris@0 52
Chris@0 53 /**
Chris@0 54 * Returns true if the given service is defined.
Chris@0 55 *
Chris@0 56 * @param string $id The service identifier
Chris@0 57 *
Chris@0 58 * @return bool true if the service is defined, false otherwise
Chris@0 59 */
Chris@0 60 public function has($id);
Chris@0 61
Chris@0 62 /**
Chris@0 63 * Check for whether or not a service has been initialized.
Chris@0 64 *
Chris@0 65 * @param string $id
Chris@0 66 *
Chris@0 67 * @return bool true if the service has been initialized, false otherwise
Chris@0 68 */
Chris@0 69 public function initialized($id);
Chris@0 70
Chris@0 71 /**
Chris@0 72 * Gets a parameter.
Chris@0 73 *
Chris@0 74 * @param string $name The parameter name
Chris@0 75 *
Chris@0 76 * @return mixed The parameter value
Chris@0 77 *
Chris@0 78 * @throws InvalidArgumentException if the parameter is not defined
Chris@0 79 */
Chris@0 80 public function getParameter($name);
Chris@0 81
Chris@0 82 /**
Chris@0 83 * Checks if a parameter exists.
Chris@0 84 *
Chris@0 85 * @param string $name The parameter name
Chris@0 86 *
Chris@0 87 * @return bool The presence of parameter in container
Chris@0 88 */
Chris@0 89 public function hasParameter($name);
Chris@0 90
Chris@0 91 /**
Chris@0 92 * Sets a parameter.
Chris@0 93 *
Chris@0 94 * @param string $name The parameter name
Chris@0 95 * @param mixed $value The parameter value
Chris@0 96 */
Chris@0 97 public function setParameter($name, $value);
Chris@0 98 }