dynamic /
foxystripe-inventory
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Dynamic\FoxyStripe\Test\TestOnly; |
||
| 4 | |||
| 5 | use Dynamic\FoxyStripe\Model\OptionItem; |
||
| 6 | use Dynamic\FoxyStripe\ORM\FoxyStripeOptionInventoryManager; |
||
| 7 | use SilverStripe\Dev\TestOnly; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Class TestOption |
||
| 11 | * @package Dynamic\FoxyStripe\Test\TestOnly |
||
| 12 | * |
||
| 13 | * @mixin FoxyStripeOptionInventoryManager |
||
| 14 | */ |
||
| 15 | class TestOption extends OptionItem implements TestOnly |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private static $table_name = 'FSITestOption'; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 21 | |||
| 22 | /** |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | private static $extensions = [ |
||
|
0 ignored issues
–
show
|
|||
| 26 | FoxyStripeOptionInventoryManager::class |
||
| 27 | ]; |
||
| 28 | } |
||
| 29 |