Passed
Push — master ( 4a3edd...e1b32a )
by Thomas
03:34 queued 01:45
created

CrudFieldAbstract::prefix()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 6
c 0
b 0
f 0
ccs 0
cts 5
cp 0
rs 9.4285
cc 1
eloc 3
nc 1
nop 1
crap 2
1
<?php
2
3
namespace Webfactor\Laravel\Backpack\FluentSyntax\Contracts;
4
5
abstract class CrudFieldAbstract extends CrudAbstract implements CrudFieldInterface
6
{
7
    /*
8
    |--------------------------------------------------------------------------
9
    | Methods available for all Field Types
10
    |--------------------------------------------------------------------------
11
    */
12
}
13