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