AbstractTestCase   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 15
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getServiceProviderClass() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of Laravel SMSFactor.
5
 *
6
 * (c) Filippo Galante <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace IlGala\Tests\SMSFactor;
13
14
use IlGala\SMSFactor\SMSFactorServiceProvider;
15
use GrahamCampbell\TestBench\AbstractPackageTestCase;
16
17
/**
18
 * This is the abstract test case class.
19
 *
20
 * @author Filippo Galante <[email protected]>
21
 */
22
abstract class AbstractTestCase extends AbstractPackageTestCase
23
{
24
25
    /**
26
     * Get the service provider class.
27
     *
28
     * @param \Illuminate\Contracts\Foundation\Application $app
29
     *
30
     * @return string
31
     */
32
    protected function getServiceProviderClass($app)
33
    {
34
        return SMSFactorServiceProvider::class;
35
    }
36
}
37