phplinter\Report\Harvest::create PHP Method

create() public method

----------------------------------------------------------------------+
public create ( $report, $penaltys = null, $root = null )
    public function create($report, $penaltys = null, $root = null)
    {
        $this->penaltys = $penaltys;
        $this->root = $root;
        $this->rootlen = mb_strlen($this->root);
        if (!is_array($report)) {
            $report = array($report);
        }
        $this->_harvest($report);
        $this->_out();
    }