vendor/ibexa/cart/src/lib/Money/MoneyFactory.php line 13

Open in your IDE?
  1. <?php
  2. /**
  3. * @copyright Copyright (C) Ibexa AS. All rights reserved.
  4. * @license For full copyright and license information view LICENSE file distributed with this source code.
  5. */
  6. declare(strict_types=1);
  7. namespace Ibexa\Cart\Money;
  8. use Ibexa\ProductCatalog\Money\IntlMoneyFactory;
  9. trigger_deprecation(
  10. 'ibexa/cart',
  11. '4.6',
  12. sprintf('The %s is deprecated, will be removed in 5.0. Use %s instead', MoneyFactory::class, IntlMoneyFactory::class)
  13. );
  14. /**
  15. * @deprecated Since ibexa/cart 4.6: The Ibexa\Cart\Money\MoneyFactory class is deprecated, will be removed in 5.0
  16. */
  17. final class MoneyFactory extends IntlMoneyFactory
  18. {
  19. }