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 (1-12)
17 * @author Igor Wiedler <igor@wiedler.ch>
19 class Hour1201Transformer
extends HourTransformer
24 public function format(\DateTime
$dateTime, $length)
26 return $this->padLeft($dateTime->format('g'), $length);
32 public function normalizeHour($hour, $marker = null)
34 if ('PM' !== $marker && 12 === $hour) {
36 } elseif ('PM' === $marker && 12 !== $hour) {
37 // If PM and hour is not 12 (1-12), sum 12 hour
47 public function getReverseMatchingRegExp($length)
55 public function extractDateOptions($matched, $length)
58 'hour' => (int) $matched,
59 'hourInstance' => $this