/
vladislavts
/
gcppmsp
Обзор
Документация
Войти
/
vladislavts
/
gcppmsp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
prod
src/Repository/RepositoryTrait.php
19 строк
428 B
Vladislav
ciunt service on filial
28 ноя 2023, 20:22
28 ноя 2023, 20:22
bb86341
Код
Авторство
О чём код?
<?php namespace App\Repository; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; trait RepositoryTrait { public function getCount($field, $value) { return $this->createQueryBuilder('u') ->select('count(u.id)') ->andWhere("u.".$field." = :val") ->setParameters(["val" => $value]) ->getQuery() ->getSingleScalarResult(); } }