Completed
Push — master ( b56a59...34b930 )
by Avtandil
04:51
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 Method

Rating   Name   Duplication   Size   Complexity  
A getServiceProviderClass() 0 4 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Tests\Unit;
5
6
use GrahamCampbell\TestBench\AbstractPackageTestCase;
7
use Longman\LaravelLodash\LodashServiceProvider;
8
9
abstract class AbstractTestCase extends AbstractPackageTestCase
10
{
11
    /**
12
     * Get the service provider class.
13
     *
14
     * @param  \Illuminate\Contracts\Foundation\Application $app
15
     * @return string
16
     */
17
    protected function getServiceProviderClass($app)
18
    {
19
        return LodashServiceProvider::class;
20
    }
21
}
22