Issues (54)

tests/WidgetAreaEditorTest/TestWidget.php (3 issues)

Severity
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
The private property $table_name is not used, and could be removed.
Loading history...
11
    private static $cmsTitle = "Test widget";
0 ignored issues
show
The private property $cmsTitle is not used, and could be removed.
Loading history...
12
    private static $description = "Test widget";
0 ignored issues
show
The private property $description is not used, and could be removed.
Loading history...
13
}
14