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
With a little advice of GPT-3 (yea I know, shame on me :p) I could experiment that replacing in \vendor\pixassociates\sortable-behavior-bundle\Pix\SortableBehaviorBundle\DependencyInjection\PixSortableBehaviorExtension.php :
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('pix_sortable_behavior');
By
$treeBuilder = new TreeBuilder('pix_sortable_behavior');
$rootNode = $treeBuilder->getRootNode();
Would resolve access to all the methods in the file (according to IDE), but still throws error:
Attempted to load class "Twig_Extension" from the global namespace. Did you forget a "use" statement?
I won't dig further because everything else would be pure guess, but it case it can help someone who knows best, heh. :)
With
symfony/config v5.4.11
such error happens:The text was updated successfully, but these errors were encountered: