mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
12 lines
262 B
PHP
12 lines
262 B
PHP
|
<?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');
|
||
|
}
|