Skip to content

Commit

Permalink
add user AbstractFilterSet (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebheitzmann authored Aug 28, 2024
1 parent ed39b65 commit 220df50
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Resources/skeleton/crud/filterset/EntityFilterset.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@
namespace <?= $namespace ?>;

use Lle\CruditBundle\Datasource\AbstractFilterSet;
use Lle\CruditBundle\Filter\FilterType\AbstractFilterType;
<?php foreach ($uses as $use) { ?>
use <?= $use ?>;
<?php } ?>

/**
* @return array<int, AbstractFilterType>
*/
class <?= $prefixFilename ?>FilterSet extends AbstractFilterSet
{
public function getFilters(): array
Expand Down

0 comments on commit 220df50

Please sign in to comment.