*/ class Scope implements ScopeInterface { protected $name; protected $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; } }