Skip to content

Commit

Permalink
Add final to public method of Abstract classes (#641)
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Aug 15, 2021
1 parent 9e5fa33 commit dd6f66e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Filter/AbstractDateFilter.php
Expand Up @@ -38,14 +38,14 @@ abstract class AbstractDateFilter extends Filter
*/
protected $time = false;

public function getDefaultOptions(): array
final public function getDefaultOptions(): array
{
return [
'field_type' => $this->getDateFieldType(),
];
}

public function getRenderSettings(): array
final public function getRenderSettings(): array
{
$name = DateType::class;

Expand Down

0 comments on commit dd6f66e

Please sign in to comment.