/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Order
NameSizeModeActions
CommandHandler/-0755rm
Delivery/-0755rm
QueryHandler/-0755rm
Refund/-0755rm
Repository/-0755rm
AbstractOrderHandler.php51830644editdlrm
GeneralConfiguration.php56330644editdlrm
GiftOptionsConfiguration.php35980644editdlrm
Invoice.php14950644editdlrm
OrderAmountUpdater.php275080644editdlrm
OrderDetailUpdater.php199520644editdlrm
OrderPresenter.php13280644editdlrm
OrderProductQuantityUpdater.php207350644editdlrm
OrderReturnPresenter.php13720644editdlrm
OrderSiblingProvider.php16910644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Order/OrderSiblingProvider.php (1691B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShop\PrestaShop\Adapter\Order; use Order; use PrestaShop\PrestaShop\Core\Order\OrderSiblingProviderInterface; class OrderSiblingProvider implements OrderSiblingProviderInterface { /** * {@inheritdoc} */ public function getNextOrderId(int $orderId): int { $order = new Order($orderId); return (int) $order->getNextOrderId(); } /** * {@inheritdoc} */ public function getPreviousOrderId(int $orderId): int { $order = new Order($orderId); return (int) $order->getPreviousOrderId(); } }