mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
19 lines
290 B
PHP
19 lines
290 B
PHP
|
<?php
|
||
|
|
||
|
namespace Symbiote\GridFieldExtensions\Tests\Stub;
|
||
|
|
||
|
use Silverstripe\Dev\TestOnly;
|
||
|
|
||
|
class NamespacedClass implements TestOnly
|
||
|
{
|
||
|
public function i18n_singular_name()
|
||
|
{
|
||
|
return 'NamespacedClass';
|
||
|
}
|
||
|
|
||
|
public function canCreate()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|