Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-downloadable/Model/Link/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-downloadable/Model/Link/Purchased.php

<?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();
    }
}