Plamen Mishev
Plamen Mishev
> Great job! Could you please update the [Tree docs](https://github.com/doctrine-extensions/DoctrineExtensions/blob/81770825d0ffcbbccae9e3fc2a187979d95f67ca/doc/tree.md#tree---nestedset-behavior-extension-for-doctrine-2) in order to explain how to use these additions? done
There is a solution proposed in doctrine/dbal, however I can't get it to fully work in the context of Symfony: https://github.com/doctrine/dbal/issues/5366#issuecomment-1161639176 There is a `$container->registerForAutoconfiguration(MiddlewareInterface::class)->addTag('doctrine.middleware');` line here: https://github.com/doctrine/DoctrineBundle/blob/2.7.x/DependencyInjection/DoctrineExtension.php#L167 Without this...
In the end the solution for me was: ``` use Psr\Log\AbstractLogger; use Psr\Log\LoggerAwareInterface; use Psr\Log\LoggerAwareTrait; use Psr\Log\NullLogger; use Stringable; final class ProxyLogger extends AbstractLogger implements LoggerAwareInterface { use LoggerAwareTrait; public...
The way I got it working was simply to remove the `new` keyword: ``` import flatpickr from 'flatpickr' import monthSelectPlugin from 'flatpickr/dist/plugins/monthSelect' ``` ``` plugins: [ monthSelectPlugin({ shorthand: true })...