Issues (216)

tests/Src/TestMultiHtmlFieldsElement.php (2 issues)

Severity
1
<?php
2
3
namespace DNADesign\Elemental\Tests\Src;
4
5
use DNADesign\Elemental\Models\BaseElement;
6
use SilverStripe\Dev\TestOnly;
7
use SilverStripe\Security\Permission;
8
9
class TestMultipleHtmlFieldsElement extends BaseElement implements TestOnly
10
{
11
    private static $table_name = 'TestMultipleHtmlFieldsElement';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
12
13
    private static $db = [
0 ignored issues
show
The private property $db is not used, and could be removed.
Loading history...
14
        'Field1' => 'HTMLText',
15
        'Field2' => 'HTMLText',
16
        'Field3' => 'HTMLText',
17
    ];
18
}
19