mirror of
https://github.com/silverstripe/recipe-cms.git
synced 2024-10-22 08:05:52 +02:00
14da371ced
Add autoloading bootstrapping
14 lines
180 B
PHP
Executable File
14 lines
180 B
PHP
Executable File
<?php
|
|
|
|
namespace {
|
|
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
|
|
class Page extends SiteTree
|
|
{
|
|
private static $db = [];
|
|
|
|
private static $has_one = [];
|
|
}
|
|
}
|