Coverage fix for Ion DI
This commit is contained in:
parent
e6ae6c9e9c
commit
e679322122
@ -68,11 +68,6 @@ class Container implements ContainerInterface {
|
|||||||
*/
|
*/
|
||||||
public function get(string $id): mixed
|
public function get(string $id): mixed
|
||||||
{
|
{
|
||||||
if ( ! \is_string($id))
|
|
||||||
{
|
|
||||||
throw new ContainerException('Id must be a string');
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->has($id))
|
if ($this->has($id))
|
||||||
{
|
{
|
||||||
// Return an object instance, if it already exists
|
// Return an object instance, if it already exists
|
||||||
@ -101,11 +96,6 @@ class Container implements ContainerInterface {
|
|||||||
*/
|
*/
|
||||||
public function getNew(string $id, ?array $args = NULL): mixed
|
public function getNew(string $id, ?array $args = NULL): mixed
|
||||||
{
|
{
|
||||||
if ( ! \is_string($id))
|
|
||||||
{
|
|
||||||
throw new ContainerException('Id must be a string');
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->has($id))
|
if ($this->has($id))
|
||||||
{
|
{
|
||||||
// By default, call a factory with the Container
|
// By default, call a factory with the Container
|
||||||
|
Loading…
Reference in New Issue
Block a user