]>
Commit | Line | Data |
---|---|---|
4f5b44bd NL |
1 | <?php |
2 | ||
3 | /* | |
4 | * This file is part of the Symfony package. | |
5 | * | |
6 | * (c) Fabien Potencier <fabien@symfony.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 Symfony\Component\Intl\DateFormatter\DateFormat; | |
13 | ||
14 | /** | |
15 | * Base class for hour transformers | |
16 | * | |
17 | * @author Eriksen Costa <eriksen.costa@infranology.com.br> | |
18 | */ | |
19 | abstract class HourTransformer extends Transformer | |
20 | { | |
21 | /** | |
22 | * Returns a normalized hour value suitable for the hour transformer type | |
23 | * | |
24 | * @param int $hour The hour value | |
25 | * @param string $marker An optional AM/PM marker | |
26 | * | |
27 | * @return int The normalized hour value | |
28 | */ | |
29 | abstract public function normalizeHour($hour, $marker = null); | |
30 | } |