Completed
Push — master ( bdc9d3...0ee0bd )
by Avtandil
12s queued 10s
created

TestCase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getPackageProviders() 0 11 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Tests\Unit;
6
7
use Longman\LaravelLodash\Cache\CacheServiceProvider;
8
use Longman\LaravelLodash\Debug\DebugServiceProvider;
9
use Longman\LaravelLodash\Elasticsearch\ElasticsearchServiceProvider;
10
use Longman\LaravelLodash\LodashServiceProvider;
11
use Longman\LaravelLodash\Queue\QueueServiceProvider;
12
use Longman\LaravelLodash\Redis\RedisServiceProvider;
13
use Orchestra\Testbench\TestCase as BaseTestCase;
14
15
class TestCase extends BaseTestCase
0 ignored issues
show
Bug introduced by
There is at least one abstract method in this class. Maybe declare it as abstract, or implement the remaining methods: artisan, be, call, seed
Loading history...
16
{
17
    protected function getPackageProviders($app)
18
    {
19
        return [
20
            LodashServiceProvider::class,
21
            CacheServiceProvider::class,
22
            DebugServiceProvider::class,
23
            ElasticsearchServiceProvider::class,
24
            QueueServiceProvider::class,
25
            RedisServiceProvider::class,
26
        ];
27
    }
28
}
29