ParaTest\Runners\PHPUnit\Configuration::getBootstrap PHP Метод

getBootstrap() публичный Метод

Get the bootstrap PHPUnit configuration attribute
public getBootstrap ( ) : string
Результат string The bootstrap attribute or empty string if not set
    public function getBootstrap()
    {
        if ($this->xml) {
            return (string) $this->xml->attributes()->bootstrap;
        } else {
            return '';
        }
    }