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

TestCase::tearDown()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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