Skip to content

Releases: Warxcell/DoctrineORMFilters

Fix bug if value is callable.

04 May 10:47
Compare
Choose a tag to compare

Before if you pass value that is name of function, it would call that function, rather than pass your value to function.

Add generics

15 Apr 13:54
Compare
Choose a tag to compare

Add generics! You can now typehint your expected filters.
image

Return types, interface marker for Repositories with Filters.

15 Nov 19:28
Compare
Choose a tag to compare

Accept iterable instead of array.

08 Apr 08:53
Compare
Choose a tag to compare
2.0.2

change typehints to iterable, so we can accept Generators.

Add support for multiple parameters

30 Mar 13:58
Compare
Choose a tag to compare
$qb = $repository->createQueryBuilderByFilters('question', [
    'filterName' => ['value1', 'value2']
]);
[
  'filterSingleMultiValue' => function (QueryBuilder $queryBuilder, string $alias, string $value1, string $value2) {
          
   },
];

Version 2.0.0

15 Mar 08:51
Compare
Choose a tag to compare
  • Allow PHP8
  • Rename FiltersTrait to Filters.

Fix non unique SplObjectIds bug

06 Jan 09:00
Compare
Choose a tag to compare
1.0.1

Fix non unique SplObjectIds bug

Initial Release

18 Sep 18:16
Compare
Choose a tag to compare
1.0.0

add array typehints.