for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PH\Bundle\CoreBundle;
use Sylius\Bundle\ResourceBundle\AbstractResourceBundle;
use Sylius\Bundle\ResourceBundle\SyliusResourceBundle;
final class PHCoreBundle extends AbstractResourceBundle
{
/**
* {@inheritdoc}
*/
public function getSupportedDrivers(): array
return [
SyliusResourceBundle::DRIVER_DOCTRINE_ORM,
];
}
protected function getModelNamespace(): ?string
return 'PH\Component\Core\Model';