silverstripe-framework/tests/php/Core/ObjectTest/MySubObject.php

12 lines
274 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\Core\Tests\ObjectTest;
class MySubObject extends MyObject
{
public $title = 'my subobject';
private static $mystaticProperty = "MySubObject";
static $mystaticSubProperty = "MySubObject";
static $mystaticArray = array('two');
2016-10-14 03:30:05 +02:00
}