<?php
/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);
namespace Ibexa\Cart\Money;
use Ibexa\ProductCatalog\Money\IntlMoneyFactory;
trigger_deprecation(
'ibexa/cart',
'4.6',
sprintf('The %s is deprecated, will be removed in 5.0. Use %s instead', MoneyFactory::class, IntlMoneyFactory::class)
);
/**
* @deprecated Since ibexa/cart 4.6: The Ibexa\Cart\Money\MoneyFactory class is deprecated, will be removed in 5.0
*/
final class MoneyFactory extends IntlMoneyFactory
{
}