Completed
Push — master ( 002f4d...61bfd8 )
by Matthew
22:24 queued 07:35
created

tests/TestOnly/TestProductController.php (1 issue)

Severity
1
<?php
2
3
namespace Dynamic\FoxyStripe\Test\TestOnly;
4
5
use Dynamic\FoxyStripe\ORM\FoxyStripeInventoryManagerExtension;
6
use Dynamic\FoxyStripe\Page\ProductPageController;
7
use SilverStripe\Dev\TestOnly;
8
9
/**
10
 * Class TestProductController
11
 * @package Dynamic\FoxyStripe\Test\TestOnly
12
 *
13
 * @mixin \Dynamic\FoxyStripe\ORM\FoxyStripeInventoryManager
14
 * @mixin \Dynamic\FoxyStripe\Page\ProductPage
15
 * @mixin FoxyStripeInventoryManagerExtension
16
 */
17
class TestProductController extends ProductPageController implements TestOnly
18
{
19
    /**
20
     * @var array
21
     */
22
    private static $extensions = [
0 ignored issues
show
The private property $extensions is not used, and could be removed.
Loading history...
23
        FoxyStripeInventoryManagerExtension::class
24
    ];
25
}
26