SimpleExpectation::getDumper PHP Method

getDumper() protected method

Accessor for the dumper.
protected getDumper ( ) : SimpleDumper
return SimpleDumper Current value dumper.
    protected function getDumper()
    {
        if (!$this->dumper) {
            $dumper = new SimpleDumper();
            return $dumper;
        }
        return $this->dumper;
    }