Issues (18)

tests/Stub/StringTagFieldTestBlogPost.php (2 issues)

Severity
1
<?php
2
3
namespace SilverStripe\TagField\Tests\Stub;
4
5
use SilverStripe\Dev\TestOnly;
6
use SilverStripe\ORM\DataObject;
7
8
class StringTagFieldTestBlogPost extends DataObject implements TestOnly
9
{
10
    private static $table_name = 'StringTagFieldTestBlogPost';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
11
12
    private static $db = [
0 ignored issues
show
The private property $db is not used, and could be removed.
Loading history...
13
        'Title' => 'Text',
14
        'Content' => 'Text',
15
        'Tags' => 'Text',
16
    ];
17
}
18