chamilo/chamilo-lms

View on GitHub
src/CoreBundle/Controller/BaseController.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/* For licensing terms, see /license.txt */

namespace Chamilo\CoreBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;

/**
 * Each entity controller must extend this class.
 */
abstract class BaseController extends AbstractController {}