Skip to content

Commit e271759

Browse files
style: apply cs fixer to LeadRepository.php
1 parent 8c30475 commit e271759

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/bundles/LeadBundle/Entity/LeadRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -944,9 +944,9 @@ protected function addSearchCommandWhereClause($q, $filter): array
944944
case $this->translator->trans('mautic.lead.lead.searchcommand.dnc', [], null, 'en_US'):
945945
$anyKeyword = $this->translator->trans('mautic.lead.lead.searchcommand.dnc.any');
946946
$anyKeywordEn = $this->translator->trans('mautic.lead.lead.searchcommand.dnc.any', [], null, 'en_US');
947-
$sq = $this->getEntityManager()->getConnection()->createQueryBuilder();
947+
$sq = $this->getEntityManager()->getConnection()->createQueryBuilder();
948948
$sq->select('1')
949-
->from(MAUTIC_TABLE_PREFIX . 'lead_donotcontact', 'dnc')
949+
->from(MAUTIC_TABLE_PREFIX.'lead_donotcontact', 'dnc')
950950
->where($q->expr()->eq('l.id', 'dnc.lead_id'));
951951

952952
if ($string === $anyKeyword || $string === $anyKeywordEn) {

0 commit comments

Comments
 (0)