EloquentBuilderMethodExtension   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBuilderClass() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * This file is part of Phpstan Laravel.
7
 *
8
 * (c) Nuno Maduro <[email protected]>
9
 *
10
 *  For the full copyright and license information, please view the LICENSE
11
 *  file that was distributed with this source code.
12
 */
13
14
namespace NunoMaduro\PhpstanLaravel;
15
16
use Illuminate\Database\Eloquent\Builder;
17
18
final class EloquentBuilderMethodExtension extends AbstractBuilderMethodExtension
19
{
20
    /**
21
     * {@inheritdoc}
22
     */
23
    public function getBuilderClass(): string
24
    {
25
        return Builder::class;
26
    }
27
}
28
29