silverstripe /
silverstripe-comments
| 1 | <?php |
||
| 2 | |||
| 3 | namespace SilverStripe\Comments\Tests\Stubs; |
||
| 4 | |||
| 5 | class CommentableItemEnabled extends CommentableItem |
||
| 6 | { |
||
| 7 | private static $defaults = array( |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 8 | 'ProvideComments' => true, |
||
| 9 | 'ModerationRequired' => 'Required', |
||
| 10 | 'CommentsRequireLogin' => true |
||
| 11 | ); |
||
| 12 | |||
| 13 | private static $table_name = 'CommentableItemEnabled'; |
||
|
0 ignored issues
–
show
|
|||
| 14 | } |
||
| 15 |