Removing weird strict comparison on different types
This commit is contained in:
parent
82cda1ecb0
commit
8bbc492978
1 changed files with 1 additions and 1 deletions
|
@ -842,6 +842,6 @@ class XmlDriver extends FileDriver
|
|||
{
|
||||
$flag = (string)$element;
|
||||
|
||||
return ($flag === true || $flag == "true" || $flag == "1");
|
||||
return ($flag == "true" || $flag == "1");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue