Issues (11)

tests/mocks/Quote.php (3 issues)

Severity
1
<?php
2
3
namespace Firesphere\Seeder\Tests\Mock;
4
5
use SilverStripe\Dev\TestOnly;
6
use SilverStripe\ORM\DataObject;
7
8
class Quote extends DataObject implements TestOnly
9
{
10
    private static $db = [
0 ignored issues
show
The private property $db is not used, and could be removed.
Loading history...
11
        'Quote' => 'Text'
12
    ];
13
14
    private static $belongs_many_many = [
0 ignored issues
show
The private property $belongs_many_many is not used, and could be removed.
Loading history...
15
        'Pages' => Page::class
16
    ];
17
18
    private static $table_name = 'SeederTestQuote';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
19
}
20