mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
15 lines
333 B
PHP
15 lines
333 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Comments\Tests\Stubs;
|
|
|
|
class CommentableItemDisabled extends CommentableItem
|
|
{
|
|
private static $defaults = array(
|
|
'ProvideComments' => false,
|
|
'ModerationRequired' => 'None',
|
|
'CommentsRequireLogin' => false
|
|
);
|
|
|
|
private static $table_name = 'CommentableItemDisabled';
|
|
}
|