Issues (26)

src/TaxonomyType.php (2 issues)

1
<?php
2
3
namespace SilverStripe\Taxonomy;
4
5
use SilverStripe\ORM\DataObject;
6
7
/**
8
 * Represents a type of taxonomy, which can be configured in the CMS. This can be used to group similar
9
 * taxonomy terms together.
10
 */
11
class TaxonomyType extends DataObject
12
{
13
    private static $table_name = 'TaxonomyType';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
14
15
    private static $db = array(
0 ignored issues
show
The private property $db is not used, and could be removed.
Loading history...
16
        'Name' => 'Varchar(255)'
17
    );
18
}
19