/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Hook
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Hook/RenderedHookInterface.php (1573B)
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShop\PrestaShop\Core\Hook;
/**
* Interface RenderedHookInterface defines contract for rendered hook.
*/
interface RenderedHookInterface
{
/**
* Get rendered hook.
*
* @return HookInterface
*/
public function getHook();
/**
* Get rendered content.
*
* @return array
*/
public function getContent();
/**
* Returns displayable content.
*
* @return string
*/
public function outputContent();
}