for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\Taxonomy;
use SilverStripe\ORM\DataObject;
/**
* Represents a type of taxonomy, which can be configured in the CMS. This can be used to group similar
* taxonomy terms together.
*/
class TaxonomyType extends DataObject
{
private static $table_name = 'TaxonomyType';
$table_name
private static $db = array(
$db
'Name' => 'Varchar(255)'
);
}