1 <?php
2
3 /*
4 * This file is part of the Brickrouge package.
5 *
6 * (c) Olivier Laviale <olivier.laviale@gmail.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Brickrouge;
13
14 class DateTime extends Date
15 {
16 public function __construct(array $tags)
17 {
18 parent::__construct
19 (
20 $tags + array
21 (
22 'size' => 24,
23 'class' => 'datetime'
24 )
25 );
26 }
27 }