TestWidget
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 0
eloc 4
c 2
b 0
f 1
dl 0
loc 5
1
<?php
2
3
namespace SilverStripe\Widgets\Tests\WidgetAreaEditorTest;
4
5
use SilverStripe\Dev\TestOnly;
6
use SilverStripe\Widgets\Model\Widget;
7
8
class TestWidget extends Widget implements TestOnly
9
{
10
    private static $table_name = 'WidgetAreaEditorTest_TestWidget';
0 ignored issues
show
introduced by
The private property $table_name is not used, and could be removed.
Loading history...
11
    private static $cmsTitle = "Test widget";
0 ignored issues
show
introduced by
The private property $cmsTitle is not used, and could be removed.
Loading history...
12
    private static $description = "Test widget";
0 ignored issues
show
introduced by
The private property $description is not used, and could be removed.
Loading history...
13
}
14