Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | class ServiceProvider implements ServiceProviderInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var ServiceProviderInterface[] |
||
15 | */ |
||
16 | private $serviceProvider; |
||
17 | |||
18 | /** |
||
19 | * ServiceProvider constructor. |
||
20 | * |
||
21 | * @param ServiceProviderInterface[] $serviceProvider |
||
22 | */ |
||
23 | public function __construct(array $serviceProvider) |
||
24 | { |
||
25 | $this->serviceProvider = $serviceProvider; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @param \Laravel\Lumen\Application $app |
||
30 | */ |
||
31 | public function register(Application $app) |
||
35 | } |
||
36 | } |
||
38 | } |