18 lines
386 B
PHP
Raw Permalink Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\ORM\Tests\DataExtensionTest;
2016-11-13 20:35:43 +13:00
use SilverStripe\Core\ClassInfo;
2016-10-14 14:30:05 +13:00
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataExtension;
class AllMethodNames extends DataExtension implements TestOnly
{
public function allMethodNames()
{
return [
strtolower('getTestValueWith_' . ClassInfo::shortName($this->owner))
];
}
2016-10-14 14:30:05 +13:00
}