| Current Path : /var/www/clients/client3/web2/web/setup/src/Magento/Setup/Model/Description/Mixin/ |
| Current File : /var/www/clients/client3/web2/web/setup/src/Magento/Setup/Model/Description/Mixin/BrakeMixin.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Model\Description\Mixin;
/**
* Add brake html tag to each new line to description
*/
class BrakeMixin implements DescriptionMixinInterface
{
/**
* Add </br> tag to text after each new line (\r\n)
*
* @param string $text
* @return string
*/
public function apply($text)
{
return implode(
PHP_EOL . '</br>' . PHP_EOL,
explode(PHP_EOL, trim($text))
);
}
}