├── LICENSE ├── README.md ├── composer.json ├── docs └── index.md ├── src ├── DependencyInjection │ └── MetaclassFilterExtension.php ├── Filter │ ├── AddFakeLeftJoin.php │ ├── DateFilter.php │ ├── FilterLogic.php │ └── RemoveFakeLeftJoin.php ├── MetaclassFilterBundle.php └── Resources │ └── config │ └── services.yaml └── tests ├── Entity ├── TestEntity.php └── TestRelated.php ├── Filter ├── DateFilterTest.php ├── FilterLogicTest.php ├── FilterLogicWithAnnotationTest.php └── FilterToTestAssumptions.php └── Utils └── Reflection.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DependencyInjection/MetaclassFilterExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/src/DependencyInjection/MetaclassFilterExtension.php -------------------------------------------------------------------------------- /src/Filter/AddFakeLeftJoin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/src/Filter/AddFakeLeftJoin.php -------------------------------------------------------------------------------- /src/Filter/DateFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/src/Filter/DateFilter.php -------------------------------------------------------------------------------- /src/Filter/FilterLogic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/src/Filter/FilterLogic.php -------------------------------------------------------------------------------- /src/Filter/RemoveFakeLeftJoin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/src/Filter/RemoveFakeLeftJoin.php -------------------------------------------------------------------------------- /src/MetaclassFilterBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/src/MetaclassFilterBundle.php -------------------------------------------------------------------------------- /src/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/src/Resources/config/services.yaml -------------------------------------------------------------------------------- /tests/Entity/TestEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/tests/Entity/TestEntity.php -------------------------------------------------------------------------------- /tests/Entity/TestRelated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/tests/Entity/TestRelated.php -------------------------------------------------------------------------------- /tests/Filter/DateFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/tests/Filter/DateFilterTest.php -------------------------------------------------------------------------------- /tests/Filter/FilterLogicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/tests/Filter/FilterLogicTest.php -------------------------------------------------------------------------------- /tests/Filter/FilterLogicWithAnnotationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/tests/Filter/FilterLogicWithAnnotationTest.php -------------------------------------------------------------------------------- /tests/Filter/FilterToTestAssumptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/tests/Filter/FilterToTestAssumptions.php -------------------------------------------------------------------------------- /tests/Utils/Reflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaclass-nl/filter-bundle/HEAD/tests/Utils/Reflection.php --------------------------------------------------------------------------------