<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Model\Description\Mixin;
/**
* Interface for Description mixin
*/
interface DescriptionMixinInterface
{
/**
* Apply mixin logic to block of text
*
* @param string $text
* @return string
*/
public function apply($text);
}
Back to Directory