IproSoftwareSync   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A ignoreMigrations() 0 5 1
1
<?php
2
3
namespace IproSync;
4
5
class IproSoftwareSync
6
{
7
    public static $runsMigrations = true;
8
9
10
    public static function ignoreMigrations()
11
    {
12
        static::$runsMigrations = false;
13
14
        return new static();
15
    }
16
}
17