src/PhpSyntaxExtension.php
Method getFilters
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function getFilters(): array
{
return [
new TwigFilter('strtotime', function (string $time, ?int $now = null): int {
$timestamp = \strtotime($time, $now ?? time());