DeployUnlock::handle()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: reallyli
5
 * Date: 18/9/28
6
 * Time: 下午3:24.
7
 */
8
9
namespace Reallyli\LaravelDeployer\Commands;
10
11
class DeployUnlock extends BaseCommand
12
{
13
    protected $signature = 'deploy:unlock {stage? : Stage or hostname}';
14
    protected $description = 'Unlock dep';
15
16
    public function handle()
17
    {
18
        $this->dep('deploy:unlock');
19
    }
20
}
21