for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Bugloos\QuerySortingBundle;
use Bugloos\QuerySortingBundle\DependencyInjection\QuerySortingExtension;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;
/**
* @author Milad Ghofrani <[email protected]>
*/
class QuerySortingBundle extends Bundle
{
* @return ExtensionInterface|QuerySortingExtension
*
public function getContainerExtension(): ?ExtensionInterface
if (null === $this->extension) {
$this->extension = new QuerySortingExtension();
}
return $this->extension;