DateTime.php 262 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace ACA\JetEngine\Value\Format; use ACA\JetEngine\Column\Meta; use ACA\JetEngine\Field; class DateTime extends Date { public function __construct( Meta $column, Field\Field $field ) { parent::__construct( $column, $field, 'Y-m-d\TH:i' ); } }