-
-
Notifications
You must be signed in to change notification settings - Fork 46
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 #13 from Rodenastyle/csvEmptyLinesFix
CSV empty lines detection
- Loading branch information
Showing
7 changed files
with
103 additions
and
39 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
/** | ||
* Created by PhpStorm. | ||
* User: sergio.rodenas | ||
* Date: 27/6/18 | ||
* Time: 15:49 | ||
*/ | ||
|
||
namespace Rodenastyle\StreamParser\Traits; | ||
|
||
|
||
trait Facade | ||
{ | ||
public static function __callStatic($name, $arguments) | ||
{ | ||
return (new static())->{$name}(...$arguments); | ||
} | ||
} |
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,9 @@ | ||
title,price,comments | ||
The Iliad and The Odyssey,12.95,"Best translation I've read.,I like other versions better." | ||
Anthology of World Literature,24.95,"Needs more modern literature.,Excellent overview of world literature." | ||
Computer Dictionary,24.95,"A valuable resource.," | ||
Cooking on a Budget,23.95,"Delicious!," | ||
Great Works of Art,29.95, | ||
|
||
Computer Dictionary,24.90,"A valuable resource.," | ||
,, | ||
0,0,"0,0" | ||
Cooking on a Budget,0,"Delicious!," | ||
Great Works of Art,29.95, |