Skip to content

Commit

Permalink
Update Mf2toiCal.php
Browse files Browse the repository at this point in the history
Update `join` to `implode` and use current method signature
  • Loading branch information
gRegorLove authored Jun 4, 2023
1 parent 9c9040a commit dc85620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GregorMorrill/Mf2toiCal/Mf2toiCal.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public function fold($input)
$lines[] = $line;
}

return join($lines, "\r\n\t");
return implode("\r\n\t", $lines);
}

}
Expand Down

0 comments on commit dc85620

Please sign in to comment.