-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKernel.php
65 lines (55 loc) · 1.1 KB
/
Kernel.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
declare(strict_types=1);
namespace Peak\Bedrock;
use Psr\Container\ContainerInterface;
class Kernel implements \Peak\Blueprint\Bedrock\Kernel
{
/**
* Peak kernel version
* @var string
*/
const VERSION = '4.2.4';
/**
* @var ContainerInterface
*/
private $container;
/**
* @var string
*/
private $environment;
/**
* Kernel constructor.
*
* @param string $environment
* @param ContainerInterface $container
*/
public function __construct(
string $environment,
ContainerInterface $container
) {
$this->environment = $environment;
$this->container = $container;
$this->initialize();
}
/**
* @return ContainerInterface
*/
public function getContainer(): ContainerInterface
{
return $this->container;
}
/**
* @return string
*/
public function getEnv(): string
{
return $this->environment;
}
/**
* Initialize kernel
*/
public function initialize()
{
// nothing by default
}
}