TestCollectionController
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 12
wmc 0
1
<?php
2
3
namespace Dynamic\Collection\Test\TestOnly;
4
5
use Dynamic\Collection\CollectionExtension;
6
use Dynamic\Collection\Test\TestOnly\TestCollectionObject;
7
use SilverStripe\Dev\TestOnly;
8
9
class TestCollectionController extends \PageController implements TestOnly
10
{
11
    /**
12
     * @var string
13
     */
14
    private static $managed_object = TestCollectionObject::class;
0 ignored issues
show
introduced by
The private property $managed_object is not used, and could be removed.
Loading history...
15
16
    /**
17
     * @var array
18
     */
19
    private static $extensions = [
0 ignored issues
show
introduced by
The private property $extensions is not used, and could be removed.
Loading history...
20
        CollectionExtension::class
21
    ];
22
}
23