| Current Path : /home/rtorresani/www/vendor/magento/module-release-notification/Model/ |
| Current File : //home/rtorresani/www/vendor/magento/module-release-notification/Model/ContentProviderInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\ReleaseNotification\Model;
/**
* Requests the release notification content data from a defined service
* @api
*/
interface ContentProviderInterface
{
/**
* Retrieves the release notification content data.
*
* @param string $version
* @param string $edition
* @param string $locale
*
* @return string|false
*/
public function getContent($version, $edition, $locale);
}