Test Failed
Push — master ( 93ef3c...0c96ba )
by Arthur
09:20
created

TestCase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A tearDown() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: arthur
5
 * Date: 09.10.18
6
 * Time: 21:56
7
 */
8
9
namespace Foundation\Abstracts\Tests;
10
11
use Tests\TestCase as BaseTestCase;
12
13
class TestCase extends BaseTestCase
14
{
15
    protected function tearDown()
16
    {
17
        parent::tearDown();
18
        // \Cache::clear();
19
    }
20
21
22
}
23