| 1 | <?php |
||
| 11 | class SilverStripeVersion extends DataObject |
||
| 12 | { |
||
| 13 | |||
| 14 | private static $db = [ |
||
|
|
|||
| 15 | 'Name' => 'Varchar(10)', |
||
| 16 | 'Major' => 'Int', |
||
| 17 | 'Minor' => 'Int' |
||
| 18 | ]; |
||
| 19 | |||
| 20 | private static $default_sort = [ |
||
| 21 | 'Major' => 'DESC', |
||
| 22 | 'Minor' => 'DESC' |
||
| 23 | ]; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return Composer\Package\LinkConstraint\LinkConstraintInterface |
||
| 27 | */ |
||
| 28 | public function getConstraint() |
||
| 37 | |||
| 38 | } |
||
| 39 |