Skip to content

Commit dbbf3c1

Browse files
committed
Add missing return type
1 parent 19e73c3 commit dbbf3c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Controller/TemplateController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function templateAction(string $template, int $maxAge = null, int $shared
6868
return $response;
6969
}
7070

71-
public function __invoke(string $template, int $maxAge = null, int $sharedAge = null, bool $private = null)
71+
public function __invoke(string $template, int $maxAge = null, int $sharedAge = null, bool $private = null): Response
7272
{
7373
return $this->templateAction($template, $maxAge, $sharedAge, $private);
7474
}

0 commit comments

Comments
 (0)