src/CourseBundle/Repository/CToolIntroRepository.php
<?php
declare(strict_types=1);
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Repository;
use Chamilo\CoreBundle\Repository\ResourceRepository;
use Chamilo\CourseBundle\Entity\CToolIntro;
use Doctrine\Persistence\ManagerRegistry;
final class CToolIntroRepository extends ResourceRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, CToolIntro::class);
}
}