parseCSV::__construct PHP Method

__construct() public method

Constructor
public __construct ( $input = null, $offset = null, $limit = null, $conditions = null ) : nothing
return nothing
    function __construct($input = null, $offset = null, $limit = null, $conditions = null)
    {
        if ($offset !== null) {
            $this->offset = $offset;
        }
        if ($limit !== null) {
            $this->limit = $limit;
        }
        if (count($conditions) > 0) {
            $this->conditions = $conditions;
        }
        if (!empty($input)) {
            $this->parse($input);
        }
    }