| Current Path : /home/rtorresani/www/vendor/magento/framework/Stdlib/DateTime/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/Stdlib/DateTime/DateTimeFormatterInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Stdlib\DateTime;
/**
* @api
* @since 100.0.2
*/
interface DateTimeFormatterInterface
{
/**
* Returns a translated and localized date string
*
* @param \IntlCalendar|\DateTimeInterface $object
* @param string|int|array|null $format
* @param string|null $locale
* @return string
*/
public function formatObject($object, $format = null, $locale = null);
}