-
-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from thephpleague/update-namespace
Update namespace
- Loading branch information
Showing
26 changed files
with
97 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
use Bakame\Csv\Reader; | ||
use League\Csv\Reader; | ||
|
||
require '../vendor/autoload.php'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
use Bakame\Csv\Reader; | ||
use League\Csv\Reader; | ||
|
||
require '../vendor/autoload.php'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
use Bakame\Csv\Reader; | ||
use League\Csv\Reader; | ||
|
||
require '../vendor/autoload.php'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
/** | ||
* Bakame.csv - A lightweight CSV Coder/Decoder library | ||
* League.csv - A lightweight CSV Coder/Decoder library | ||
* | ||
* @author Ignace Nyamagana Butera <[email protected]> | ||
* @copyright 2014 Ignace Nyamagana Butera | ||
* @link https://github.com/nyamsprod/Bakame.csv | ||
* @link https://github.com/nyamsprod/League.csv | ||
* @license http://opensource.org/licenses/MIT | ||
* @version 4.2.1 | ||
* @package Bakame.csv | ||
* @version 5.0.0 | ||
* @package League.csv | ||
* | ||
* MIT LICENSE | ||
* | ||
|
@@ -30,7 +30,7 @@ | |
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
namespace Bakame\Csv; | ||
namespace League\Csv; | ||
|
||
use IteratorAggregate; | ||
use JsonSerializable; | ||
|
@@ -43,7 +43,7 @@ | |
/** | ||
* A abstract class to enable basic CSV manipulation | ||
* | ||
* @package Bakame.csv | ||
* @package League.csv | ||
* @since 4.0.0 | ||
* | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
/** | ||
* Bakame.csv - A lightweight CSV Coder/Decoder library | ||
* League.csv - A lightweight CSV Coder/Decoder library | ||
* | ||
* @author Ignace Nyamagana Butera <[email protected]> | ||
* @copyright 2014 Ignace Nyamagana Butera | ||
* @link https://github.com/nyamsprod/Bakame.csv | ||
* @link https://github.com/nyamsprod/League.csv | ||
* @license http://opensource.org/licenses/MIT | ||
* @version 4.2.1 | ||
* @package Bakame.csv | ||
* @version 5.0.0 | ||
* @package League.csv | ||
* | ||
* MIT LICENSE | ||
* | ||
|
@@ -30,16 +30,16 @@ | |
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
namespace Bakame\Csv; | ||
namespace League\Csv; | ||
|
||
use DomDocument; | ||
use SplTempFileObject; | ||
use Bakame\Csv\Iterator\MapIterator; | ||
use League\Csv\Iterator\MapIterator; | ||
|
||
/** | ||
* A abstract class to enable basic CSV manipulation | ||
* | ||
* @package Bakame.csv | ||
* @package League.csv | ||
* @since 4.2.0 | ||
* | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
/** | ||
* Bakame.csv - A lightweight CSV Coder/Decoder library | ||
* League.csv - A lightweight CSV Coder/Decoder library | ||
* | ||
* @author Ignace Nyamagana Butera <[email protected]> | ||
* @copyright 2014 Ignace Nyamagana Butera | ||
* @link https://github.com/nyamsprod/Bakame.csv | ||
* @link https://github.com/nyamsprod/League.csv | ||
* @license http://opensource.org/licenses/MIT | ||
* @version 4.2.1 | ||
* @package Bakame.csv | ||
* @version 5.0.0 | ||
* @package League.csv | ||
* | ||
* MIT LICENSE | ||
* | ||
|
@@ -30,15 +30,15 @@ | |
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
namespace Bakame\Csv\Iterator; | ||
namespace League\Csv\Iterator; | ||
|
||
use CallbackFilterIterator; | ||
use Iterator; | ||
|
||
/** | ||
* A Trait to filter Iterators | ||
* | ||
* @package Bakame.csv | ||
* @package League.csv | ||
* @since 4.2.1 | ||
* | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
/** | ||
* Bakame.csv - A lightweight CSV Coder/Decoder library | ||
* League.csv - A lightweight CSV Coder/Decoder library | ||
* | ||
* @author Ignace Nyamagana Butera <[email protected]> | ||
* @copyright 2014 Ignace Nyamagana Butera | ||
* @link https://github.com/nyamsprod/Bakame.csv | ||
* @link https://github.com/nyamsprod/League.csv | ||
* @license http://opensource.org/licenses/MIT | ||
* @version 4.2.1 | ||
* @package Bakame.csv | ||
* @version 5.0.0 | ||
* @package League.csv | ||
* | ||
* MIT LICENSE | ||
* | ||
|
@@ -30,7 +30,7 @@ | |
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
namespace Bakame\Csv\Iterator; | ||
namespace League\Csv\Iterator; | ||
|
||
use InvalidArgumentException; | ||
use Iterator; | ||
|
@@ -39,7 +39,7 @@ | |
/** | ||
* A Trait to Set a LimitIterator object | ||
* | ||
* @package Bakame.csv | ||
* @package League.csv | ||
* @since 4.2.1 | ||
* | ||
*/ | ||
|
Oops, something went wrong.