Passed
Push — master ( 9b9c6c...ef704e )
by Daniel
35:52 queued 24:20
created

tests/php/ORM/DataObjectDuplicationTest/Goat.php (3 issues)

Severity
1
<?php
2
3
4
namespace SilverStripe\ORM\Tests\DataObjectDuplicationTest;
5
6
use SilverStripe\Dev\TestOnly;
7
use SilverStripe\ORM\DataObject;
8
9
/**
10
 * Note: Not duplicated
11
 */
12
class Goat extends DataObject implements TestOnly
13
{
14
    private static $table_name = 'DataObjectDuplicateTest_Goat';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
15
16
    private static $db = [
0 ignored issues
show
The private property $db is not used, and could be removed.
Loading history...
17
        'Title' => 'Varchar',
18
    ];
19
20
    private static $belongs_to = [
0 ignored issues
show
The private property $belongs_to is not used, and could be removed.
Loading history...
21
        'bobcats' => Bobcat::class,
22
    ];
23
}
24