Add container access
This commit is contained in:
parent
986be392f3
commit
6a18422b09
1 changed files with 12 additions and 0 deletions
|
@ -224,4 +224,16 @@ class Instance
|
|||
|
||||
$this->container = $builder->build();
|
||||
}
|
||||
|
||||
public function has(string $key): bool {
|
||||
return $this->container->has($key);
|
||||
}
|
||||
|
||||
public function get(string $key, $default = null) {
|
||||
if (!$this->container->has($key)) {
|
||||
return $default;
|
||||
}
|
||||
|
||||
return $this->container->get($key);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue