Issues (18)

tests/Stub/TagFieldTestBlogTag.php (4 issues)

Severity
1
<?php
2
3
namespace SilverStripe\TagField\Tests\Stub;
4
5
use SilverStripe\Dev\TestOnly;
6
use SilverStripe\ORM\DataObject;
7
use SilverStripe\TagField\Tests\Stub\TagFieldTestBlogPost;
8
9
class TagFieldTestBlogTag extends DataObject implements TestOnly
10
{
11
    private static $table_name = 'TagFieldTestBlogTag';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
12
13
    private static $default_sort = '"TagFieldTestBlogTag"."ID" ASC';
0 ignored issues
show
The private property $default_sort is not used, and could be removed.
Loading history...
14
15
    private static $db = [
0 ignored issues
show
The private property $db is not used, and could be removed.
Loading history...
16
        'Title' => 'Varchar(200)'
17
    ];
18
19
    private static $belongs_many_many = [
0 ignored issues
show
The private property $belongs_many_many is not used, and could be removed.
Loading history...
20
        'BlogPosts' => TagFieldTestBlogPost::class
21
    ];
22
}
23