17 lines
221 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\Core\Tests\ObjectTest;
class T1A extends BaseObject
2016-10-14 14:30:05 +13:00
{
public function testMethod()
{
return true;
}
2016-10-14 14:30:05 +13:00
public function otherMethod()
{
return true;
}
2016-10-14 14:30:05 +13:00
}