From 7ed4871c4a6409354d24702a5e97364336c85894 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sun, 25 May 2025 01:44:47 +0000 Subject: [PATCH] Add some documentation for ideally. --- app/src/Handler/Page.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/src/Handler/Page.php b/app/src/Handler/Page.php index b89399e..9152dc1 100644 --- a/app/src/Handler/Page.php +++ b/app/src/Handler/Page.php @@ -5,6 +5,11 @@ namespace Slovocast\Handler; use Psr\Http\Message\ResponseInterface; use Slovocast\Exception\TemplateNotSetException; +/** + * Ideally, this class will be used for static pages that do no require any + * specific or special functionality to render them. Something like Home + * Pages. + */ abstract class Page extends Handler { protected string $template = '';