Your IP : 216.73.216.208
<?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);
}