mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
17 lines
261 B
PHP
17 lines
261 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\ORM\Tests\DataExtensionTest;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\DataExtension;
|
||
|
|
||
|
class AppliedToDO extends DataExtension implements TestOnly
|
||
|
{
|
||
|
|
||
|
public function testMethodApplied()
|
||
|
{
|
||
|
return "hello world";
|
||
|
}
|
||
|
|
||
|
}
|