Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Apr 9, 2014
1 parent da6e137 commit 3cdd4d1
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 19 deletions.
11 changes: 6 additions & 5 deletions src/AbstractCsv.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2014 Ignace Nyamagana Butera
* @link https://github.com/nyamsprod/League.csv
* @link https://github.com/thephpleague/csv/
* @license http://opensource.org/licenses/MIT
* @version 5.3.0
* @version 5.3.1
* @package League.csv
*
* MIT LICENSE
Expand Down Expand Up @@ -107,6 +107,7 @@ abstract class AbstractCsv implements JsonSerializable, IteratorAggregate
*/
public function __construct($path, $open_mode = 'r+')
{
ini_set("auto_detect_line_endings", true);
$this->setIterator($path, $open_mode);
}

Expand Down Expand Up @@ -351,7 +352,6 @@ protected function setIterator($path, $open_mode)
*/
public function getIterator()
{
ini_set("auto_detect_line_endings", true);
$this->csv->setCsvControl($this->delimiter, $this->enclosure, $this->escape);
$this->csv->setFlags($this->flags);

Expand Down Expand Up @@ -388,9 +388,10 @@ public function getEncoding()
}

/**
* Instantiate a {@link Writer} class from the current {@link Reader}
* Instantiate a AbstractCsv extended class
*
* @param string $open_mode the file open mode flag
* @param string $class_name the Class to load {@link Writer} or {@link Reader}
* @param string $open_mode the file open mode flag
*
* @return \League\Csv\AbstractCSv
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Iterator/IteratorFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2014 Ignace Nyamagana Butera
* @link https://github.com/nyamsprod/League.csv
* @link https://github.com/thephpleague/csv/
* @license http://opensource.org/licenses/MIT
* @version 5.3.0
* @version 5.3.1
* @package League.csv
*
* MIT LICENSE
Expand Down
4 changes: 2 additions & 2 deletions src/Iterator/IteratorInterval.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2014 Ignace Nyamagana Butera
* @link https://github.com/nyamsprod/League.csv
* @link https://github.com/thephpleague/csv/
* @license http://opensource.org/licenses/MIT
* @version 5.3.0
* @version 5.3.1
* @package League.csv
*
* MIT LICENSE
Expand Down
4 changes: 2 additions & 2 deletions src/Iterator/IteratorQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2014 Ignace Nyamagana Butera
* @link https://github.com/nyamsprod/League.csv
* @link https://github.com/thephpleague/csv/
* @license http://opensource.org/licenses/MIT
* @version 5.3.0
* @version 5.3.1
* @package League.csv
*
* MIT LICENSE
Expand Down
4 changes: 2 additions & 2 deletions src/Iterator/IteratorSortBy.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2014 Ignace Nyamagana Butera
* @link https://github.com/nyamsprod/League.csv
* @link https://github.com/thephpleague/csv/
* @license http://opensource.org/licenses/MIT
* @version 5.3.0
* @version 5.3.1
* @package League.csv
*
* MIT LICENSE
Expand Down
4 changes: 2 additions & 2 deletions src/Iterator/MapIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2014 Ignace Nyamagana Butera
* @link https://github.com/nyamsprod/League.csv
* @link https://github.com/thephpleague/csv/
* @license http://opensource.org/licenses/MIT
* @version 5.3.0
* @version 5.3.1
* @package League.csv
*
* MIT LICENSE
Expand Down
4 changes: 2 additions & 2 deletions src/Reader.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2014 Ignace Nyamagana Butera
* @link https://github.com/nyamsprod/League.csv
* @link https://github.com/thephpleague/csv/
* @license http://opensource.org/licenses/MIT
* @version 5.3.0
* @version 5.3.1
* @package League.csv
*
* MIT LICENSE
Expand Down
4 changes: 2 additions & 2 deletions src/Writer.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2014 Ignace Nyamagana Butera
* @link https://github.com/nyamsprod/League.csv
* @link https://github.com/thephpleague/csv/
* @license http://opensource.org/licenses/MIT
* @version 5.3.0
* @version 5.3.1
* @package League.csv
*
* MIT LICENSE
Expand Down

0 comments on commit 3cdd4d1

Please sign in to comment.