Releases: BorislavSabev/SimpleXmlLoader
Releases · BorislavSabev/SimpleXmlLoader
Release 1.0
The finalized release v.1.0.0
Summary
This version fully supports the "main goals" that the library defines which are:
- provide a transparent OOP interface to SimpleXML's simplexml_load_file() and simplexml_load_string() functions
- handle SimpleXML's internal errors
- throw catchable Exceptions (XmlLoaderException)
Changes from v0.8.
CHANGED: the method signature of both wrapper functions() to follow the PSR-1 variable naming concentions
FINALIZED: the PHPUnit test suite
FIXED: A behavioral bug connected to passing an empty string to loadString()
Initial Release
Includes:
- a wrapper for
simplexml_load_file()
exposed viaSimpleXmlLoader::loadFile()
- a wrapper for
simplexml_load_string()
exposed viaSimpleXmlLoader::loadString()
- LibXML error handling.
SimpleXmlLoader
will throw aXmlLoaderException
on any error
Check the README.md for more information on usage