mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
14 lines
237 B
PHP
14 lines
237 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Dev\Tests\CsvBulkLoaderTest;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
|
||
|
class CantEditModel extends CanModifyModel implements TestOnly
|
||
|
{
|
||
|
public function canEdit($member = null)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|