Use long array syntax
This commit is contained in:
parent
75b1551956
commit
d62eb48b76
1 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ class MarkdownTestHelper
|
|||
RecursiveRegexIterator::GET_MATCH
|
||||
);
|
||||
|
||||
$dataValues = [];
|
||||
$dataValues = array();
|
||||
|
||||
/** @var SplFileInfo $inputFile */
|
||||
foreach ($regexIterator as $inputFiles) {
|
||||
|
|
@ -31,7 +31,7 @@ class MarkdownTestHelper
|
|||
$expectedHtmlPath = substr($inputMarkdownPath, 0, -4) . 'html';
|
||||
$xhtml = false;
|
||||
}
|
||||
$dataValues[] = [$inputMarkdownPath, $expectedHtmlPath, $xhtml];
|
||||
$dataValues[] = array($inputMarkdownPath, $expectedHtmlPath, $xhtml);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue