Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-backend/Console/Command/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-backend/Console/Command/MaintenanceDisableCommand.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Backend\Console\Command;

/**
 * Command for disabling maintenance mode
 */
class MaintenanceDisableCommand extends AbstractMaintenanceCommand
{
    /**
     * Initialization of the command
     *
     * @return void
     */
    protected function configure()
    {
        $this->setName('maintenance:disable')->setDescription('Disables maintenance mode');

        parent::configure();
    }

    /**
     * Disable maintenance mode
     *
     * @return bool
     */
    protected function isEnable(): bool
    {
        return false;
    }

    /**
     * Get disabled maintenance mode display string
     *
     * @return string
     */
    protected function getDisplayString(): string
    {
        return '<info>Disabled maintenance mode</info>';
    }

    /**
     * Return if IP addresses effective for maintenance mode were set
     *
     * @return bool
     */
    public function isSetAddressInfo(): bool
    {
        return count($this->maintenanceMode->getAddressInfo()) > 0;
    }
}