Issues (42)

tests/TestOnly/Extension/VariationExtension.php (1 issue)

Severity
1
<?php
2
3
namespace Dynamic\Foxy\Discounts\Tests\TestOnly\Extension;
4
5
use Dynamic\Foxy\Discounts\Tests\TestOnly\Page\ProductPage;
6
use SilverStripe\Dev\TestOnly;
7
use SilverStripe\ORM\DataExtension;
8
9
/**
10
 * Class VariationDataExtension
11
 */
12
class VariationDataExtension extends DataExtension implements TestOnly
13
{
14
    /**
15
     * @var string[]
16
     */
17
    private static $has_one = [
0 ignored issues
show
The private property $has_one is not used, and could be removed.
Loading history...
18
        'Product' => ProductPage::class,
19
    ];
20
}
21