Completed
Push — stable ( ba1838...bafb54 )
by Nuno
09:32
created

AbstractTestCase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 14
c 1
b 0
f 0
wmc 1
lcom 0
cbo 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getServiceProviderClass() 0 4 1
1
<?php
2
3
/**
4
 * This file is part of Laravel Desktop Notifier.
5
 *
6
 * (c) Nuno Maduro <[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 NunoMaduro\Tests\LaravelDesktopNotifier;
13
14
use GrahamCampbell\TestBench\AbstractPackageTestCase;
15
use NunoMaduro\LaravelDesktopNotifier\LaravelDesktopNotifierServiceProvider;
16
17
/**
18
 * Class AbstractTestCase.
19
 *
20
 * @author Nuno Maduro <[email protected]>
21
 */
22
abstract class AbstractTestCase extends AbstractPackageTestCase
23
{
24
    /**
25
     * Get the service provider class.
26
     *
27
     * @param \Illuminate\Contracts\Foundation\Application $app
28
     *
29
     * @return string
30
     */
31
    protected function getServiceProviderClass($app)
32
    {
33
        return LaravelDesktopNotifierServiceProvider::class;
34
    }
35
}
36