Passed
Push — master ( f0cb22...699e9b )
by Robbie
01:46
created

FluentStubObject::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace TractorCow\Fluent\Tests\Extension\Stub;
4
5
use SilverStripe\Dev\TestOnly;
6
use SilverStripe\ORM\DataObject;
7
use TractorCow\Fluent\Extension\FluentExtension;
8
9
/**
10
 * @mixin FluentExtension
11
 */
12
class FluentStubObject extends DataObject implements TestOnly
13
{
14
    private static $extensions = [
0 ignored issues
show
Unused Code introduced by
The property $extensions is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
15
        FluentExtension::class,
16
    ];
17
}
18