Passed
Push — master ( 67253e...1a1f73 )
by Arthur
04:53 queued 11s
created

DisableDatabaseRefresh::runDatabaseMigrations()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 0
dl 0
loc 2
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: arthur
5
 * Date: 11.10.18
6
 * Time: 14:25
7
 */
8
9
namespace Foundation\Abstracts\Tests;
10
11
12
trait DisableDatabaseRefresh
13
{
14
    /**
15
     * Disables database reseeding after test
16
     *
17
     * @return void
18
     */
19
    public function runDatabaseMigrations()
20
    {
21
22
    }
23
}
24