![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/Filter/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Filter; use Laminas\Filter\FilterInterface; /** * @deprecated As money_format() was removed in PHP 8.0 * @see https://www.php.net/manual/en/function.money-format.php */ class Money implements FilterInterface { /** * @var string */ protected $_format; /** * @param string $format * * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function __construct($format) { trigger_error('Class is deprecated', E_USER_DEPRECATED); } /** * Returns the result of filtering $value * * @param float $value * @return string * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function filter($value) { return ''; } }