Issues (124)

tests/Stubs/CommentableItemEnabled.php (2 issues)

Severity
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
The private property $defaults is not used, and could be removed.
Loading history...
8
        'ProvideComments' => true,
9
        'ModerationRequired' => 'Required',
10
        'CommentsRequireLogin' => true
11
    );
12
13
    private static $table_name = 'CommentableItemEnabled';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
14
}
15