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

DisableDatabaseRefresh   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 9
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A runDatabaseMigrations() 0 2 1
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