123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Create value-object \Magento\Framework\Phrase
- * @deprecated The global function __() is now loaded via Magento Framework, the below require is only
- * for backwards compatibility reasons and this file will be removed in a future version
- * @see Magento\Framework\Phrase\__.php
- * @SuppressWarnings(PHPMD.ShortMethodName)
- * @return \Magento\Framework\Phrase
- */
- if (!function_exists('__')) {
- function __()
- {
- $argc = func_get_args();
- $text = array_shift($argc);
- if (!empty($argc) && is_array($argc[0])) {
- $argc = $argc[0];
- }
- return new \Magento\Framework\Phrase($text, $argc);
- }
- }
|