<?php
namespace Boldr\Cms\DebugBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Boldr\Cms\CmsBundle\BoldrCmsBundleInterface;
use Boldr\Cms\CmsBundle\ComposerBundleTrait;
class BoldrDebugBundle extends Bundle implements BoldrCmsBundleInterface
{
use ComposerBundleTrait;
public function getParentBundle(): ?string
{
return null;
}
}