Charles
Charles
This bundle fetches services from the container, some rewrite of the code is required.
@raziel057 Unfortunately we will have to accept that `assetic-bundle` has been abandoned.
https://github.com/schmittjoh/JMSAopBundle/pull/26 https://github.com/schmittjoh/JMSAopBundle/pull/27 https://github.com/schmittjoh/JMSAopBundle/pull/29
`EntityManagerInterface` requires Doctrine 2.4 or higher.
It depend on your use case. We even have 6 comment states and we simple update the existing `numComments` with an event listener but we don't have the need for...
jQuery 3 is supported in master branch. I'll make a new release as soon as the next `FOSRestBundle` is released. I agree it would be nice to have HTML 5...
You will have to inject the `fos_comment.form_factory.comment` service into your controller class. If autowire is enabled, you should be able to do something like this: ```php use FOS\CommentBundle\Controller\ThreadController; use FOS\CommentBundle\FormFactory\CommentFormFactory;...
Another solution that might work is adding a `getSubscribedServices` method to your controller class. ```php use FOS\CommentBundle\Controller\ThreadController; use FOS\CommentBundle\FormFactory\CommentFormFactory; class CustomThreadController extends BaseThreadController { public static function getSubscribedServices(): array {...
The `getSubscribedServices` is not recommended however, Symfony advises that the app container should remain small. The best solution is to inject the required services via dependency injection as provided in...
That's a bug. It should not happen.