namespace AppBundle\Entity;
use Doctrine\ORM\EntityManager;
class UserRepositiory extends \Doctrine\ORM\EntityRepository
{
private $em;
public function __construct(EntityManager $em)
{
$this->em = $em;
}
//далее написать функции для работы с бд
}
Записи из БД или сущности?
Utils... это называется "мне было лень придумывать адекватное название".
сервис сделаете
services:
app.myservice:
class: AppBundle\Utils\MyService
injecting the entire service container into the Helper class.?