![]() 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/module-downloadable/Model/Link/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Link; use Magento\Framework\Exception\LocalizedException; /** * Downloadable links purchased model * * @method int getOrderId() * @method \Magento\Downloadable\Model\Link\Purchased setOrderId(int $value) * @method string getOrderIncrementId() * @method \Magento\Downloadable\Model\Link\Purchased setOrderIncrementId(string $value) * @method int getOrderItemId() * @method \Magento\Downloadable\Model\Link\Purchased setOrderItemId(int $value) * @method string getCreatedAt() * @method \Magento\Downloadable\Model\Link\Purchased setCreatedAt(string $value) * @method string getUpdatedAt() * @method \Magento\Downloadable\Model\Link\Purchased setUpdatedAt(string $value) * @method int getCustomerId() * @method \Magento\Downloadable\Model\Link\Purchased setCustomerId(int $value) * @method string getProductName() * @method \Magento\Downloadable\Model\Link\Purchased setProductName(string $value) * @method string getSku() * @method \Magento\Downloadable\Model\Link\Purchased setSku(string $value) * @method string getLinkSectionTitle() * @method \Magento\Downloadable\Model\Link\Purchased setLinkSectionTitle(string $value) * * @api * @since 100.0.2 */ class Purchased extends \Magento\Framework\Model\AbstractModel { /** * Enter description here... * * @return void */ protected function _construct() { $this->_init(\Magento\Downloadable\Model\ResourceModel\Link\Purchased::class); parent::_construct(); } /** * Check order id * * @return $this */ public function beforeSave() { if (null == $this->getOrderId()) { throw new LocalizedException(__('Order id cannot be null')); } return parent::beforeSave(); } }