mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-01-02 13:52:02 +00:00
Merge branch '3.0'
This commit is contained in:
commit
4914e91a33
@ -42,6 +42,10 @@ abstract class XML
|
|||||||
*/
|
*/
|
||||||
public static function load($key, $password = '')
|
public static function load($key, $password = '')
|
||||||
{
|
{
|
||||||
|
if (!extension_loaded('dom')) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (!Strings::is_stringable($key)) {
|
if (!Strings::is_stringable($key)) {
|
||||||
throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
|
throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user