Continue improving type hints

This commit is contained in:
Alex Cabal 2024-05-10 22:28:24 -05:00
parent eb376c87bd
commit 703e1a7a03
73 changed files with 98 additions and 114 deletions

View file

@ -4,7 +4,6 @@ use function Safe\ob_start;
class Template{
/**
* @param string $templateName
* @param array<mixed> $arguments
*/
protected static function Get(string $templateName, array $arguments = []): string{
@ -23,7 +22,6 @@ class Template{
}
/**
* @param string $function
* @param array<mixed> $arguments
*/
public static function __callStatic(string $function, array $arguments): string{