__construct documentation

This commit is contained in:
William Knauss
2014-02-05 18:29:01 -05:00
parent 8dd2e52073
commit 6a6754ca04

View File

@@ -170,8 +170,13 @@ class parseCSV {
/**
* Constructor
* @param input CSV file or string
* @return nothing
* Class constructor
*
* @access public
* @param [input] string The CSV string or a direct filepath
* @param [offset] integer Number of rows to ignore from the beginning of the data
* @param [limit] integer Limits the number of returned rows to specified amount
* @param [conditions] string Basic SQL-like conditions for row matching
*/
public function __construct ($input = null, $offset = null, $limit = null, $conditions = null) {
if ($offset!==null) {