Completed
Push — extensions-support ( bcc5d6...dc7c75 )
by Patrick
03:13
created

Sortable::enable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 5
rs 9.4285
ccs 4
cts 4
cp 1
cc 1
eloc 3
nc 1
nop 0
crap 1
1
<?php
2
3
namespace LaravelDoctrine\Fluent\Extensions\Gedmo;
4
5
use LaravelDoctrine\Fluent\Extensions\Gedmo\Sortable\SortableGroup;
6
use LaravelDoctrine\Fluent\Extensions\Gedmo\Sortable\SortablePosition;
7
8
class Sortable
9
{
10
    /**
11
     * @return void
12
     */
13 1
    public static function enable()
14
    {
15 1
        SortablePosition::enable();
16 1
        SortableGroup::enable();
17 1
    }
18
}
19