HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/fabricas.colombiatrade.com.co/vendor2/drush/drush/src/Boot/EmptyBoot.php
<?php

namespace Drush\Boot;

use Psr\Log\LoggerInterface;

/**
 * This is a do-nothing 'Boot' class that is used when there
 * is no site at --root, or when no root is specified.
 *
 * The 'empty' boot must be careful to never change state,
 * in case bootstrap code might later come along and set
 * a site (e.g. in command completion).
 */
class EmptyBoot extends BaseBoot
{

    public function validRoot($path)
    {
        return false;
    }

    public function bootstrapPhases()
    {
        return [
        DRUSH_BOOTSTRAP_DRUSH => '_drush_bootstrap_drush',
        ];
    }

    public function bootstrapInitPhases()
    {
        return [DRUSH_BOOTSTRAP_DRUSH];
    }
}