Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/app/code/Amasty/Paction/Plugin/Ui/Model/
Upload File :
Current File : /home/dev2.destoffenstraat.com/app/code/Amasty/Paction/Plugin/Ui/Model/Manager.php

<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
 * @package Mass Product Actions for Magento 2
 */

namespace Amasty\Paction\Plugin\Ui\Model;

use Magento\Ui\Model\Manager as UiManager;

class Manager extends AbstractReader
{
    public function afterGetData(UiManager $subject, array $result): array
    {
        return $this->addMassactions($result);
    }
}