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

AbstractTestCase::getServiceProviderClass()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 4
c 1
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 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