<?phpnamespace App\Library\TinyMCE;use App\Library\TinyMCE\DependencyInjection\TinyMCEExtension;use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;use Symfony\Component\HttpKernel\Bundle\Bundle;class TinyMCEBundle extends Bundle{ public function getContainerExtension(): ?ExtensionInterface { if (null === $this->extension) { $this->extension = new TinyMCEExtension(); } return $this->extension; }}