Passed
Branch master (718b20)
by y
07:49
created

AsanaTest::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
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());
16
    }
17
}