Deployer\Type\Result::getOutput PHP Method

getOutput() public method

public getOutput ( ) : string
return string
    public function getOutput()
    {
        return $this->output;
    }

Usage Example

Beispiel #1
0
 public function testTimeout()
 {
     if (false !== getenv('SCRUTINIZER')) {
         $this->markTestSkipped('Test skipped on scrutinizer environment');
     }
     $this->exec('deploy:timeout_test', ['stage' => 'remote_auth_by_agent']);
     $this->assertRegExp(self::IP_REG_EXP, $this->result->getOutput());
 }