RedBeanPHP\Logger\RDefault::clear PHP Method

clear() public method

Clears the internal log array, removing all previously stored entries.
public clear ( ) : self
return self
    public function clear()
    {
        $this->logs = array();
        return $this;
    }