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