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

FluentStubObject

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
wmc 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