Quote
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 11
c 0
b 0
f 0
wmc 0
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
introduced by
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
introduced by
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
introduced by
The private property $table_name is not used, and could be removed.
Loading history...
19
}
20