Issues (124)

tests/Stubs/CommentableItemDisabled.php (2 issues)

Severity
1
<?php
2
3
namespace SilverStripe\Comments\Tests\Stubs;
4
5
class CommentableItemDisabled 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' => false,
9
        'ModerationRequired' => 'None',
10
        'CommentsRequireLogin' => false
11
    );
12
13
    private static $table_name = 'CommentableItemDisabled';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
14
}
15