Bootstrap::boot()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 8
rs 9.4285
cc 2
eloc 4
nc 2
nop 1
1
<?php
2
3
namespace Core\Bootstrap;
4
5
use Zend\Diactoros\ServerRequestFactory;
6
use Zend\Diactoros\Uri;
7
8
class Bootstrap
9
{
10
    private $bootstraps = [];
11
12
    public function __construct(array $bootstraps)
13
    {
14
        $this->bootstraps = $bootstraps;
15
    }
16
17
    public function boot(array $env)
18
    {
19
        foreach ($this->bootstraps as $bootstrapClassName) {
20
            /** @var BootstrapInterface */
21
            $bootstrap = new $bootstrapClassName();
22
            $bootstrap->boot($env);
23
        }
24
    }
25
}
26