You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to figure an issue I have with the package, I realized it can't work with symfony/workflow < 4.1 since 1.3.0 because of the use of InstanceOfSupportStrategy here :
This class was introduced in symfony/workflow 4.1 to replace the now-deprecated ClassInstanceSupportStrategy.
So either we define the minimum requirement to "symfony/worflow": "^4.1", or we add a compatibility layer to check if InstanceOfSupportStrategy exists, and if not use the ClassInstanceSupportStrategy.
What do you think about this ?
The text was updated successfully, but these errors were encountered:
Well, then the composer.json should be updated to only use Symfony components >= 4.1, no ? Because right now, you can require the package, but it won't work (which is pretty frustrating when you think about it)
While trying to figure an issue I have with the package, I realized it can't work with symfony/workflow < 4.1 since 1.3.0 because of the use of
InstanceOfSupportStrategy
here :laravel-workflow/src/WorkflowRegistry.php
Line 78 in f09800a
This class was introduced in symfony/workflow 4.1 to replace the now-deprecated
ClassInstanceSupportStrategy
.So either we define the minimum requirement to
"symfony/worflow": "^4.1"
, or we add a compatibility layer to check ifInstanceOfSupportStrategy
exists, and if not use theClassInstanceSupportStrategy
.What do you think about this ?
The text was updated successfully, but these errors were encountered: