CommentableItemEnabled
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
eloc 6
c 2
b 0
f 1
dl 0
loc 9
wmc 0
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
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
introduced by
The private property $table_name is not used, and could be removed.
Loading history...
14
}
15