Completed
Push — master ( 2fc4c7...b0bc56 )
by Sebastian
03:38
created

Backup   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 17
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getOptions() 0 9 1
A execute() 0 4 1
1
<?php
2
3
namespace phpbu\App\Cmd;
4
5
6
class Backup
7
{
8
    public function getOptions() : array
9
    {
10
        return [
11
            'bootstrap='     => true,
12
            'configuration=' => true,
13
            'limit='         => true,
14
            'simulate'       => true,
15
        ];
16
    }
17
18
    public function execute()
19
    {
20
21
    }
22
}
23