Add container access

master v1.0.2
eater 6 years ago
parent 986be392f3
commit 6a18422b09
Signed by: eater
GPG Key ID: AD2560A0F84F0759

@ -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…
Cancel
Save