Skip to content

Commit

Permalink
Merge branch '3.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 27, 2012
2 parents a68951d + bb1c230 commit 1b0577f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions PHPUnit/Util/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,11 @@ protected function getTestSuite(DOMElement $testSuiteNode)

// Get the absolute path to the file
$file = $fileIteratorFacade->getFilesAsArray($file);

if (!isset($file[0])) {
continue;
}

$file = $file[0];

if ($fileNode->hasAttribute('phpVersion')) {
Expand Down

0 comments on commit 1b0577f

Please sign in to comment.