for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dynamic\FoxyStripe\Test\TestOnly;
use Dynamic\FoxyStripe\Model\OptionItem;
use Dynamic\FoxyStripe\ORM\FoxyStripeOptionInventoryManager;
use SilverStripe\Dev\TestOnly;
/**
* Class TestOption
* @package Dynamic\FoxyStripe\Test\TestOnly
*
* @mixin FoxyStripeOptionInventoryManager
*/
class TestOption extends OptionItem implements TestOnly
{
* @var string
private static $table_name = 'FSITestOption';
$table_name
* @var array
private static $extensions = [
$extensions
FoxyStripeOptionInventoryManager::class
];
}