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

tests/TestOnly/TestProduct.php (2 issues)

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