Completed
Push — 3.0 ( fea5eb...c29f0e )
by Vermeulen
02:17
created

ModuleList   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 5 1
1
<?php
2
3
namespace BFW\Install\Core\AppSystems;
4
5
class ModuleList extends \BFW\Core\AppSystems\ModuleList
6
{
7
    /**
8
     * {@inheritdoc}
9
     * Run only loadAllModules, not more.
10
     */
11
    public function run()
12
    {
13
        $this->loadAllModules();
14
        $this->runStatus = true;
15
    }
16
}
17