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

ModuleList::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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