Completed
Push — master ( b56a59...34b930 )
by Avtandil
04:51
created

ServiceProviderTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A provides() 0 4 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Tests\Unit;
5
6
use GrahamCampbell\TestBenchCore\ServiceProviderTrait;
7
8
class ServiceProviderTest extends AbstractTestCase
1 ignored issue
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...
9
{
10
    use ServiceProviderTrait;
11
12
    /**
13
     * @test
14
     */
15
    public function provides()
16
    {
17
        $this->testProvides();
18
    }
19
}
20