Passed
Push — master ( 0658f3...f968a7 )
by y
02:18
created

AsanaTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 2 1
1
<?php
2
3
namespace Helix\Asana\Api\Laravel\Command;
4
5
use Helix\Asana\Api\Laravel\Facade\Asana;
6
use Illuminate\Console\Command;
7
8
final class AsanaTest extends Command {
9
10
    protected $description = "Tests Asana connectivity.";
11
12
    protected $signature = 'asana:test';
13
14
    public function handle () {
15
        var_dump(Asana::getMe());
0 ignored issues
show
Security Debugging Code introduced by
var_dump(Helix\Asana\Api...\Facade\Asana::getMe()) looks like debug code. Are you sure you do not want to remove it?
Loading history...
16
    }
17
}