DeployUnlock   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 4 1
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