| Total Complexity | 0 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class ProductPage extends \Page implements TestOnly |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private static $table_name = 'FoxyProductTestPage'; |
||
|
|
|||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string[] |
||
| 23 | */ |
||
| 24 | private static $extensions = [ |
||
| 25 | Purchasable::class, |
||
| 26 | ProductDataExtension::class, |
||
| 27 | ]; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string[] |
||
| 31 | */ |
||
| 32 | private static $has_many = [ |
||
| 33 | 'Variations' => Variation::class, |
||
| 34 | ]; |
||
| 36 |