We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using LoadDataFixturesDoctrineCommand it's possible to choose which purger we want to run (--purger) but that's unfortunately not the possible with the executor; ORMExecutor is hardcoded in the class (https://github.com/doctrine/DoctrineFixturesBundle/blob/3.4.x/Command/LoadDataFixturesDoctrineCommand.php#L154).
LoadDataFixturesDoctrineCommand
--purger
ORMExecutor
I have my own executor because of this issue (PR still open #209), I need to create a new command too, it would be great to have more flexibility.
And because fields are private I can't extends it, I basically need to copy/paste the command to change this line.
What do you think?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using
LoadDataFixturesDoctrineCommand
it's possible to choose which purger we want to run (--purger
) but that's unfortunately not the possible with the executor;ORMExecutor
is hardcoded in the class (https://github.com/doctrine/DoctrineFixturesBundle/blob/3.4.x/Command/LoadDataFixturesDoctrineCommand.php#L154).I have my own executor because of this issue (PR still open #209), I need to create a new command too, it would be great to have more flexibility.
And because fields are private I can't extends it, I basically need to copy/paste the command to change this line.
What do you think?
The text was updated successfully, but these errors were encountered: