-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbstractApplication.php
87 lines (76 loc) · 1.77 KB
/
AbstractApplication.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
declare(strict_types=1);
namespace Peak\Bedrock;
use Peak\Bedrock\Bootstrap\Bootstrap;
use Peak\Bedrock\Bootstrap\Exception\InvalidBootableProcessException;
use Peak\Blueprint\Bedrock\Application;
use Peak\Blueprint\Bedrock\Kernel;
use Peak\Blueprint\Collection\Dictionary;
use Psr\Container\ContainerInterface;
abstract class AbstractApplication implements Application
{
/**
* @var Kernel
*/
protected $kernel;
/**
* @var Dictionary|null
*/
protected $props;
/**
* @return Kernel
*/
public function getKernel(): Kernel
{
return $this->kernel;
}
/**
* @return ContainerInterface
*/
public function getContainer(): ContainerInterface
{
return $this->kernel->getContainer();
}
/**
* @param string $property
* @param mixed $default
* @return mixed
*/
public function getProp(string $property, $default = null)
{
if (!isset($this->props)) {
return $default;
}
return $this->props->get($property, $default);
}
/**
* @param string $property
* @return bool
*/
public function hasProp(string $property): bool
{
if (!isset($this->props)) {
return false;
}
return $this->props->has($property);
}
/**
* @return Dictionary|null
*/
public function getProps(): ?Dictionary
{
return $this->props;
}
/**
* Bootstrap bootable processes
* @param array $processes
* @return $this
* @throws InvalidBootableProcessException
*/
public function bootstrap(array $processes)
{
$bootstrap = new Bootstrap($processes, $this->getContainer());
$bootstrap->boot();
return $this;
}
}