Skip to content

Commit

Permalink
SplFileObject
Browse files Browse the repository at this point in the history
build fix
  • Loading branch information
jakubmisek committed Sep 23, 2024
1 parent a0b4d69 commit a9f3066
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Peachpie.Library/FileSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,9 @@ public static PhpValue fgetcsv(PhpResource handle, int length = 0, char delimite
/// ...
/// </summary>
/// <returns>Next line of CSV data or NULL in case of EOF.</returns>
delegate string CsvLineReader();
internal delegate string CsvLineReader();

static PhpArray ReadLineCsv(CsvLineReader reader, char delimiter/*=','*/, char enclosure/*='"'*/, char escape_char /*= '\\'*/ )
internal static PhpArray ReadLineCsv(CsvLineReader reader, char delimiter/*=','*/, char enclosure/*='"'*/, char escape_char /*= '\\'*/ )
{
// collect results
PhpArray result = new PhpArray();
Expand Down

0 comments on commit a9f3066

Please sign in to comment.