Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenyeargin committed Mar 23, 2024
1 parent d435552 commit 6d01286
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Form/MemberType.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
;
if (count($this->tagRepository->findAll())) {
$builder->add('tags', null, [
'by_reference' => false,
'query_builder' => function (EntityRepository $er) {
return $er->createQueryBuilder('t')
->orderBy('t.tagName', 'ASC');
},
]);
'by_reference' => false,
'query_builder' => function (EntityRepository $er) {
return $er->createQueryBuilder('t')
->orderBy('t.tagName', 'ASC');
},
]);
}
}

Expand Down

0 comments on commit 6d01286

Please sign in to comment.