Issues (42)

tests/TestOnly/Page/ProductPageController.php (1 issue)

Severity
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
The private property $extensions is not used, and could be removed.
Loading history...
19
        PageControllerExtension::class,
20
        PurchasableExtension::class,
21
    ];
22
}
23