Bootstrap::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
rs 10
c 1
b 0
f 0
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