| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class TestObject extends DataObject implements TestOnly |
||
| 10 | { |
||
| 11 | private static $table_name = 'TestObject'; |
||
| 12 | |||
| 13 | private static $db = [ |
||
| 14 | 'Title' => 'Varchar(255)', |
||
| 15 | 'ShowInSearch' => 'Boolean', |
||
| 16 | ]; |
||
| 17 | |||
| 18 | private static $has_many = [ |
||
| 19 | 'TestPages' => TestPage::class, |
||
| 20 | 'TestRelation' => TestRelationObject::class, |
||
| 21 | ]; |
||
| 22 | |||
| 23 | public function canView($member = null) |
||
| 28 |