CustomFormats
5 years ago
Locales
5 years ago
FormatsInterface.php
5 years ago
LICENSE.md
5 years ago
Moment.php
5 years ago
MomentException.php
5 years ago
MomentFromVo.php
5 years ago
MomentHelper.php
5 years ago
MomentLocale.php
5 years ago
MomentPeriodVo.php
5 years ago
FormatsInterface.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WordPressPopularPosts\Moment; |
| 4 | |
| 5 | /** |
| 6 | * Interface FormatsInterface |
| 7 | * @package Moment |
| 8 | */ |
| 9 | interface FormatsInterface |
| 10 | { |
| 11 | /** |
| 12 | * @param string $format |
| 13 | * |
| 14 | * @return FormatsInterface |
| 15 | */ |
| 16 | public function format($format); |
| 17 | |
| 18 | /** |
| 19 | * @param array $customFormats |
| 20 | * |
| 21 | * @return FormatsInterface |
| 22 | */ |
| 23 | public function setTokens(array $customFormats); |
| 24 | } |