Files
2025-08-14 22:41:49 +02:00

32 lines
695 B
Plaintext

<?php
/**
* This file is part of the <name> project.
*
* (c) <yourname> <youremail>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace {{ namespace }};
use Symfony\Component\HttpKernel\Bundle\Bundle;
/**
* This file has been generated by the EasyExtends bundle ( https://sonata-project.org/easy-extends )
*
* References :
* bundles : http://symfony.com/doc/current/book/bundles.html
*
* @author <yourname> <youremail>
*/
class {{ application }}{{ bundle }} extends Bundle
{
/**
* {@inheritdoc}
*/
public function getParent()
{
return '{{ bundle }}';
}
}