Merge branch '2.0' into 3.0

This commit is contained in:
terrafrost 2022-07-13 09:14:05 -05:00
commit 22e2fdbca6

View File

@ -42,6 +42,10 @@ abstract class XML
*/
public static function load($key, $password = '')
{
if (!extension_loaded('dom')) {
return false;
}
if (!Strings::is_stringable($key)) {
throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
}