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