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
Documentation says to extend OrmResetter::class, however, that does not work in 2.3.1.
OrmResetter::class
You need to tag your service with (the internal) tag: .foundry.persistence.database_resetter.
.foundry.persistence.database_resetter
services: App\Tests\Integration\DatabaseResetter: tags: - { name: .foundry.persistence.database_resetter, priority: -10 }
final readonly class DatabaseResetter implements OrmResetter { // ...
The text was updated successfully, but these errors were encountered:
Hi @Nyholm
hum you're right., thanks for reporting.. I don't know why I didn't notice this while I was testing this feature 🤔
I was naively thinking that with decoration, the decorator would inherit the tags from the decorated service...
I'm gonna fix this and add some tests around this mechanism
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Documentation says to extend
OrmResetter::class
, however, that does not work in 2.3.1.You need to tag your service with (the internal) tag:
.foundry.persistence.database_resetter
.The text was updated successfully, but these errors were encountered: