Skip to content

Commit

Permalink
Format README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Warxcell committed Mar 30, 2021
1 parent 9961fb2 commit 32150ed
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,18 +198,12 @@ $qb = $repository->createQueryBuilderByFilters('question', [
or when appending filter

```php
$this->appendFilter($queryBuilder, $alias, 'filterMultiValue', 'value1', 'value2');
$this->appendFilter($queryBuilder, $alias, 'filterMultiValue', 'value1', 'value2');


$filters = [
'filterSingleMultiValue' => function (
\Doctrine\ORM\QueryBuilder $queryBuilder,
string $alias,
string $value1,
string $value2
) {
$filters = [
'filterSingleMultiValue' => function (QueryBuilder $queryBuilder, string $alias, string $value1, string $value2) {

},
},
];
```

Expand Down

0 comments on commit 32150ed

Please sign in to comment.