refactor: pull stubs out of src dir

This commit is contained in:
fiachra mcdermott 2021-06-21 17:38:17 -07:00
parent 9d96f541e3
commit 931ec53964
25 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ class Plugin implements PluginEntryPointInterface
private function addOurStubs(RegistrationInterface $registration): void
{
foreach (glob(__DIR__ . '/Stubs/*.stubphp') as $stubFilePath) {
foreach (glob(dirname(__DIR__) . '/stubs/*.stubphp') as $stubFilePath) {
$registration->addStubFile($stubFilePath);
}
}