for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Controller;
use Chamilo\CoreBundle\Controller\BaseController;
/**
* Each entity controller must extends this class.
*
* @abstract
*/
abstract class ToolBaseController extends BaseController implements CourseControllerInterface
{
use CourseControllerTrait;
}