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

Backup::getOptions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 9.6666
c 0
b 0
f 0
cc 1
eloc 6
nc 1
nop 0
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