| Total Complexity | 0 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Page extends \Page implements TestOnly |
||
| 9 | { |
||
| 10 | private static $db = [ |
||
|
|
|||
| 11 | 'ExtraContent' => 'HTMLText' |
||
| 12 | ]; |
||
| 13 | |||
| 14 | private static $has_one = [ |
||
| 15 | 'Friend' => Page::class |
||
| 16 | ]; |
||
| 17 | |||
| 18 | private static $has_many = [ |
||
| 19 | 'Friends' => Page::class |
||
| 20 | ]; |
||
| 21 | |||
| 22 | private static $many_many = [ |
||
| 23 | 'Quotes' => Quote::class |
||
| 24 | ]; |
||
| 25 | |||
| 26 | private static $table_name = 'SeederTestPage'; |
||
| 27 | } |
||
| 28 |