JobMaintenanceMode.php 888 Bytes
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
<?php
/**
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Update\Queue;

/**
 * Magento maintenance mode job
 */
class JobMaintenanceMode extends AbstractJob
{
    /**
     * @param string $name
     * @param array $params
     * @param \Magento\Update\Status|null $status
     */
    public function __construct(
        $name,
        $params,
        \Magento\Update\Status $status = null
    ) {
        parent::__construct($name, $params, $status);
    }

    /**
     * @return $this
     */
    public function execute()
    {
        try {
            if ($this->params['enable'] == true) {
                $this->maintenanceMode->set(true);
            } else {
                $this->maintenanceMode->set(false);
            }
        } catch (\Exception $e) {

        }
        return $this;
    }
}