district09/php_package_dg-geopunt-geolocation

View on GitHub
src/Filter/SearchStringFilter.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace DigipolisGent\Geopunt\Geolocation\Filter;

/**
 * Filter to search records by the given string.
 */
final class SearchStringFilter extends AbstractFilter
{
    /**
     * @inheritDoc
     */
    public function name(): string
    {
        return 'q';
    }
}