for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the jquery-datatables-bundle package.
*
* (c) 2022 WEBEWEB
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace WBW\Bundle\JQuery\DataTablesBundle\Tests\Fixtures\Controller;
use Symfony\Component\HttpFoundation\Response;
use WBW\Bundle\CoreBundle\Controller\AbstractController;
/**
* Test views controller.
* @author webeweb <https://github.com/webeweb>
* @package WBW\Bundle\JQuery\DataTablesBundle\Tests\Fixtures\Controller
class TestViewsController extends AbstractController {
* Render assets/_javascripts.html.twig
* @return Response Returns the response.
public function assetsJavascriptsAction(): Response {
return $this->render("@WBWJQueryDataTables/assets/_javascripts.html.twig");
}
* Render assets/_stylesheets.html.twig
public function assetsStylesheetsAction(): Response {
return $this->render("@WBWJQueryDataTables/assets/_stylesheets.html.twig");