PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
league
/
container
/
src
<?php declare(strict_types=1); namespace WPMedia\BackWPup\Dependencies\League\Container; use WPMedia\BackWPup\Dependencies\League\Container\Definition\DefinitionInterface; use WPMedia\BackWPup\Dependencies\League\Container\Inflector\InflectorInterface; use WPMedia\BackWPup\Dependencies\League\Container\ServiceProvider\ServiceProviderInterface; use WPMedia\BackWPup\Dependencies\Psr\Container\ContainerInterface; interface DefinitionContainerInterface extends ContainerInterface { public function add(string $id, $concrete = null): DefinitionInterface; public function addServiceProvider(ServiceProviderInterface $provider): self; public function addShared(string $id, $concrete = null): DefinitionInterface; public function extend(string $id): DefinitionInterface; public function getNew($id); public function inflector(string $type, ?callable $callback = null): InflectorInterface; }
[+]
Exception
[+]
Inflector
[-] ContainerAwareTrait.php
[edit]
[+]
Definition
[-] ReflectionContainer.php
[edit]
[+]
Argument
[+]
..
[-] ContainerAwareInterface.php
[edit]
[-] DefinitionContainerInterface.php
[edit]
[-] Container.php
[edit]
[+]
ServiceProvider