mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
20 lines
345 B
PHP
20 lines
345 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Reports\Tests\ReportAdminTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\Reports\Report;
|
|
|
|
class CannotViewReport extends Report implements TestOnly
|
|
{
|
|
public function title()
|
|
{
|
|
return 'Cannot View report';
|
|
}
|
|
|
|
public function canView($member = null)
|
|
{
|
|
return false;
|
|
}
|
|
}
|