18 lines
379 B
PHP
Raw 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;
2024-08-23 19:09:43 +12:00
use SilverStripe\Core\Extension;
2016-10-14 14:30:05 +13:00
2024-08-23 19:09:43 +12:00
class AllMethodNames extends Extension implements TestOnly
2016-10-14 14:30:05 +13:00
{
public function allMethodNames()
{
return [
strtolower('getTestValueWith_' . ClassInfo::shortName($this->owner))
];
}
2016-10-14 14:30:05 +13:00
}