Completed
Push — master ( 73ea7f...8bea15 )
by Asif
02:35
created

TestCase   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getPackageProviders() 0 4 1
A getPackageAliases() 0 6 1
1
<?php namespace Webwizo\Shortcodes;
2
3
use Orchestra\Testbench\TestCase as TestBenchTestCase;
4
5
class TestCase extends TestBenchTestCase
6
{
7
8
    protected function getPackageProviders($app)
9
    {
10
        return ['Webwizo\Shortcodes\ShortcodesServiceProvider'];
11
    }
12
13
    protected function getPackageAliases($app)
14
    {
15
        return [
16
            'Shortcode' => 'Webwizo\Shortcodes\Facades\Shortcode'
17
        ];
18
    }
19
}