mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
19 lines
248 B
PHP
19 lines
248 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Core\Tests\ObjectTest;
|
|
|
|
use SilverStripe\Core\Object;
|
|
|
|
class T1A extends Object
|
|
{
|
|
public function testMethod()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function otherMethod()
|
|
{
|
|
return true;
|
|
}
|
|
}
|