Fix to short array reference in tests for PHP < 5.4
This commit is contained in:
parent
e0cefe3360
commit
44f049a0a5
|
@ -45,7 +45,7 @@ class XEEValidatorTest extends PHPUnit_Framework_TestCase
|
|||
|
||||
public function providerValidXML()
|
||||
{
|
||||
$tests = [];
|
||||
$tests = array();
|
||||
foreach (glob('rawTestData/Reader/XEETestValid*.xml') as $file) {
|
||||
$tests[] = [realpath($file), file_get_contents($file)];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue