public function Reference::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Reference.php \Symfony\Component\DependencyInjection\Reference::__construct()
Constructor.
Parameters
string $id The service identifier:
int $invalidBehavior The behavior when the service does not exist:
bool $strict Sets how this reference is validated:
See also
File
- vendor/
symfony/ dependency-injection/ Reference.php, line 34
Class
- Reference
- Reference represents a service reference.
Namespace
Symfony\Component\DependencyInjectionCode
public function __construct($id, $invalidBehavior = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE, $strict = true) {
$this->id = strtolower($id);
$this->invalidBehavior = $invalidBehavior;
$this->strict = $strict;
}