Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

Commit

Permalink
Simplify usage of dirname()
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Sep 10, 2019
1 parent afcdea4 commit c1a032c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -32,7 +32,7 @@ public static function setUpBeforeClass(): void
}

if ($function[0] instanceof ComposerClassLoader) {
$function[0]->add('Symfony_Component_Debug_Tests_Fixtures', \dirname(\dirname(\dirname(\dirname(\dirname(__DIR__))))));
$function[0]->add('Symfony_Component_Debug_Tests_Fixtures', \dirname(__DIR__, 5));
break;
}
}
Expand Down

0 comments on commit c1a032c

Please sign in to comment.