Passed
Push — master ( fde606...0af3c0 )
by Armando
08:21
created

AbstractTestCase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 13
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Tests\Unit;
6
7
use GrahamCampbell\TestBench\AbstractPackageTestCase;
8
use PhpTelegramBot\Laravel\ServiceProvider;
9
10
abstract class AbstractTestCase extends AbstractPackageTestCase
11
{
12
    protected function getServiceProviderClass(): string
13
    {
14
        return ServiceProvider::class;
15
    }
16
}
17