File: /var/www/dvpis2026/dvpis.kaunokolegija.lt/src/Repository/StudiesModuleTypeRepository.php
<?php
namespace App\Repository;
use Doctrine\ORM\EntityRepository;
/**
* StudiesModuleTypeRepository
*
* This class was generated by the Doctrine ORM. Add your own custom
* repository methods below.
*/
class StudiesModuleTypeRepository extends EntityRepository
{
public function getAllByShortName()
{
return $this->getEntityManager()
->createQuery(
"SELECT sp
FROM App:StudiesModuleType sp INDEX BY sp.shortName
ORDER BY sp.shortName ASC"
)
->getResult();
}
}