SimpleReporterDecorator::paintSignal PHP Method

paintSignal() public method

Chains to the wrapped reporter.
public paintSignal ( string $type, mixed $payload ) : boolean
$type string Event type as text.
$payload mixed Message or object.
return boolean Should return false, if this type of signal should fail the test suite.
    public function paintSignal($type, $payload)
    {
        $this->reporter->paintSignal($type, $payload);
    }