4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\Intl\DateFormatter\DateFormat
;
15 * Parser and formatter for 12 hour format (0-11)
17 * @author Igor Wiedler <igor@wiedler.ch>
19 class Hour1200Transformer
extends HourTransformer
24 public function format(\DateTime
$dateTime, $length)
26 $hourOfDay = $dateTime->format('g');
27 $hourOfDay = '12' == $hourOfDay ? '0' : $hourOfDay;
29 return $this->padLeft($hourOfDay, $length);
35 public function normalizeHour($hour, $marker = null)
37 if ('PM' === $marker) {
47 public function getReverseMatchingRegExp($length)
55 public function extractDateOptions($matched, $length)
58 'hour' => (int) $matched,
59 'hourInstance' => $this