1 | <?php |
||
2 | |||
3 | namespace Firesphere\Seeder\Tests\Mock; |
||
4 | |||
5 | use SilverStripe\Dev\TestOnly; |
||
6 | use SilverStripe\ORM\DataObject; |
||
7 | |||
8 | class Quote extends DataObject implements TestOnly |
||
9 | { |
||
10 | private static $db = [ |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
11 | 'Quote' => 'Text' |
||
12 | ]; |
||
13 | |||
14 | private static $belongs_many_many = [ |
||
0 ignored issues
–
show
|
|||
15 | 'Pages' => Page::class |
||
16 | ]; |
||
17 | |||
18 | private static $table_name = 'SeederTestQuote'; |
||
0 ignored issues
–
show
|
|||
19 | } |
||
20 |