LaravelDuskReporter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 5
c 0
b 0
f 0
ccs 0
cts 2
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
4
namespace LaravelDuskReporter;
5
6
use Illuminate\Support\Facades\Facade;
7
8
/**
9
 * @method static string storeBuildAt(string $path = '')
10
 * @method static \LaravelDuskReporter\Generation\ReportFileContract newFile(string $name)
11
 */
12
class LaravelDuskReporter extends Facade
13
{
14
    protected static function getFacadeAccessor()
15
    {
16
        return Reporter::class;
17
    }
18
}
19