mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
14 lines
252 B
PHP
14 lines
252 B
PHP
<?php
|
|
namespace SilverStripe\Reports\Tests\ReportAdminTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\Reports\Report;
|
|
|
|
class FakeReport extends Report implements TestOnly
|
|
{
|
|
public function title()
|
|
{
|
|
return 'Fake report';
|
|
}
|
|
}
|