Update comment to explain empty methods

[MAILPOET-3036]
This commit is contained in:
Rodrigo Primo
2021-03-25 10:29:41 -03:00
committed by Veljko V
parent a18ae06f8a
commit 5f262e6b04

View File

@@ -62,14 +62,14 @@ class FormListingRepository extends ListingRepository {
}
protected function applySearch(QueryBuilder $queryBuilder, string $search) {
// TODO: Implement applySearch() method.
// the parent class requires this method, but forms listing doesn't currently support this feature.
}
protected function applyFilters(QueryBuilder $queryBuilder, array $filters) {
// TODO: Implement applyFilters() method.
// the parent class requires this method, but forms listing doesn't currently support this feature.
}
protected function applyParameters(QueryBuilder $queryBuilder, array $parameters) {
// TODO: Implement applyParameters() method.
// the parent class requires this method, but forms listing doesn't currently support this feature.
}
}