| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class ViewableVersionedObject extends DataObject implements TestOnly |
||
| 10 | { |
||
| 11 | private static $db = [ |
||
|
|
|||
| 12 | 'Title' => 'Varchar', |
||
| 13 | ]; |
||
| 14 | |||
| 15 | private static $table_name = 'Test_ViewableVersionedObject'; |
||
| 16 | |||
| 17 | private static $extensions = [ |
||
| 18 | Versioned::class, |
||
| 19 | ]; |
||
| 20 | |||
| 21 | public function canView($member = null) |
||
| 26 |