fix static methods call

This commit is contained in:
yggverse 2024-05-04 23:24:39 +03:00
parent aa4a399d23
commit 162d70cedd

View File

@ -28,7 +28,7 @@ class Filter
'/[\s]{2,}/',
],
' ',
$this->text(
self::text(
$value
)
)
@ -39,7 +39,7 @@ class Filter
string $value
): string
{
return $this->text(
return self::text(
$value
);
}