You are here

protected static function RealIteratorTestCase::toAbsoluteFixtures in Database Sanitize 7

File

vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php, line 110

Class

RealIteratorTestCase

Namespace

Symfony\Component\Finder\Tests\Iterator

Code

protected static function toAbsoluteFixtures($files) {
  $f = array();
  foreach ($files as $file) {
    $f[] = realpath(__DIR__ . \DIRECTORY_SEPARATOR . '..' . \DIRECTORY_SEPARATOR . 'Fixtures' . \DIRECTORY_SEPARATOR . $file);
  }
  return $f;
}