pietercolpaert / hardf

Low level PHP library for RDF1.1 based on N3.js
https://packagist.org/packages/pietercolpaert/hardf
MIT License
36 stars 7 forks source link

Util.php: fixed string concatenation (+ => .) #16

Closed k00ni closed 6 years ago

k00ni commented 6 years ago

if you use + in PHP it actually tries to sum up things, not combine them. Use . instead.

pietercolpaert commented 6 years ago

Thanks!