-
Notifications
You must be signed in to change notification settings - Fork 1
/
Container.php
50 lines (40 loc) · 1.05 KB
/
Container.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
namespace Your\Namespace;
use StellarWP\ContainerContract\ContainerInterface;
// If you are including PHP-DI container using Strauss (recommended), then:
use Your\Namespace\DI\Container as PHPDIContainer;
// If you are including the PHP-DI container directly, then you'd want to do:
//use DI\Container as PHPDIContainer;
class Container implements ContainerInterface {
protected $container;
/**
* Container constructor.
*/
public function __construct() {
$this->container = new PHPDIContainer();
}
/**
* @inheritDoc
*/
public function bind( string $id, $implementation = null ) {
$this->container->set( $id, $implementation );
}
/**
* @inheritDoc
*/
public function get( string $id ) {
return $this->container->get( $id );
}
/**
* @inheritDoc
*/
public function has( string $id ) {
return $this->container->has( $id );
}
/**
* @inheritDoc
*/
public function singleton( string $id, $implementation = null ) {
$this->container->set( $id, $implementation );
}
}