File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed
Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 1212 */
1313
1414 #[ORM \Table(name: 'nti_smtp_configuration ' )]
15+ #[ORM \Entity(repositoryClass: 'NTI\EmailBundle\Repository\SmtpRepository ' )]
1516 #[ORM \HasLifecycleCallbacks()]
1617class Smtp {
1718
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace NTI \EmailBundle \Repository ;
4+
5+
6+ use Doctrine \Persistence \ManagerRegistry ;
7+ use Doctrine \Bundle \DoctrineBundle \Repository \ServiceEntityRepository ;
8+ use NTI \EmailBundle \Entity \Smtp ;
9+
10+ /**
11+ * EmailRepository
12+ *
13+ * This class was generated by the Doctrine ORM. Add your own custom
14+ * repository methods below.
15+ */
16+ class SmtpRepository extends ServiceEntityRepository
17+ {
18+ public function __construct (ManagerRegistry $ registry )
19+ {
20+ parent ::__construct ($ registry , Smtp::class);
21+ }
22+ }
You can’t perform that action at this time.
0 commit comments