Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/app/code/Amasty/Rewards/Setup/Patch/Schema/
Upload File :
Current File : //home/rtorresani/www/app/code/Amasty/Rewards/Setup/Patch/Schema/AddOrderProcessedAttribute.php

<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
 * @package Reward Points Base for Magento 2
 */

namespace Amasty\Rewards\Setup\Patch\Schema;

use Amasty\Rewards\Api\Data\SalesQuote\OrderInterface;
use Magento\Framework\DB\Ddl\Table;
use Magento\Framework\Setup\ModuleDataSetupInterface;
use Magento\Framework\Setup\Patch\SchemaPatchInterface;
use Magento\Sales\Model\Order;
use Magento\Sales\Setup\SalesSetupFactory;

class AddOrderProcessedAttribute implements SchemaPatchInterface
{
    /**
     * @var ModuleDataSetupInterface
     */
    private $moduleDataSetup;

    /**
     * @var SalesSetupFactory
     */
    private $salesSetupFactory;

    public function __construct(
        ModuleDataSetupInterface $moduleDataSetup,
        SalesSetupFactory $salesSetupFactory
    ) {
        $this->moduleDataSetup = $moduleDataSetup;
        $this->salesSetupFactory = $salesSetupFactory;
    }

    /**
     * @return void
     */
    public function apply(): void
    {
        $salesSetup = $this->salesSetupFactory->create(
            ['resourceName' => 'sales_setup', 'setup' => $this->moduleDataSetup]
        );

        $salesSetup->addAttribute(Order::ENTITY, OrderInterface::ORDER_PROCESSED_ATTRIBUTE, [
            'type' => Table::TYPE_INTEGER,
            'visible' => false,
            'nullable' => true
        ]);
    }

    /**
     * @return array
     */
    public function getAliases(): array
    {
        return [];
    }

    /**
     * @return array
     */
    public static function getDependencies(): array
    {
        return [];
    }
}