Bootstrap   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 18
rs 10
c 1
b 0
f 0
wmc 3
lcom 1
cbo 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 8 2
A __construct() 0 4 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