mirror of
https://github.com/silverstripe/recipe-cms.git
synced 2024-10-22 08:05:52 +02:00
13 lines
161 B
PHP
13 lines
161 B
PHP
|
<?php
|
||
|
|
||
|
use SilverStripe\CMS\Model\SiteTree;
|
||
|
|
||
|
class Page extends SiteTree
|
||
|
{
|
||
|
private static $db = array(
|
||
|
);
|
||
|
|
||
|
private static $has_one = array(
|
||
|
);
|
||
|
}
|