class Scope in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Scope.php \Symfony\Component\DependencyInjection\Scope
Scope class.
@author Johannes M. Schmitt <schmittjoh@gmail.com>
Hierarchy
- class \Symfony\Component\DependencyInjection\Scope implements ScopeInterface
Expanded class hierarchy of Scope
8 files declare their use of Scope
- CheckReferenceValidityPassTest.php in vendor/
symfony/ dependency-injection/ Tests/ Compiler/ CheckReferenceValidityPassTest.php - container18.php in vendor/
symfony/ dependency-injection/ Tests/ Fixtures/ containers/ container18.php - ContainerAwareEventDispatcherTest.php in vendor/
symfony/ event-dispatcher/ Tests/ ContainerAwareEventDispatcherTest.php - ContainerAwareHttpKernel.php in vendor/
symfony/ http-kernel/ DependencyInjection/ ContainerAwareHttpKernel.php - ContainerBuilderTest.php in vendor/
symfony/ dependency-injection/ Tests/ ContainerBuilderTest.php
File
- vendor/
symfony/ dependency-injection/ Scope.php, line 19
Namespace
Symfony\Component\DependencyInjectionView source
class Scope implements ScopeInterface {
private $name;
private $parentName;
public function __construct($name, $parentName = ContainerInterface::SCOPE_CONTAINER) {
$this->name = $name;
$this->parentName = $parentName;
}
public function getName() {
return $this->name;
}
public function getParentName() {
return $this->parentName;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Scope:: |
private | property | ||
Scope:: |
private | property | ||
Scope:: |
public | function |
Overrides ScopeInterface:: |
|
Scope:: |
public | function |
Overrides ScopeInterface:: |
|
Scope:: |
public | function |