Change Twig template short name to bundle syntax in render calls from controllers
class BaseController extends Controller {
function indexAction()
{
- $this->render('appBundle:Landing\Main:index.html.twig');
+ $this->render('@app/Landing/Main/index.html.twig');
}
}
Configure your rector.php
:
<?php
use Rector\Config\RectorConfig;
use Rector\Symfony\Symfony43\Rector\MethodCall\ConvertRenderTemplateShortNotationToBundleSyntaxRector;
return RectorConfig::configure()
->withRules([
ConvertRenderTemplateShortNotationToBundleSyntaxRector::class,
]);