ProductPageController
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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