mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
14 lines
229 B
PHP
14 lines
229 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Dev\Tests\DebugViewTest;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
|
||
|
class ObjectWithDebug implements TestOnly
|
||
|
{
|
||
|
public function debug()
|
||
|
{
|
||
|
return __CLASS__ . '::debug() custom content';
|
||
|
}
|
||
|
}
|