From 31dc0aabb21afa6cf4e3e02d703a2336eb005a2f Mon Sep 17 00:00:00 2001 From: Amin Cheribet Date: Sun, 22 Sep 2024 08:25:55 -0400 Subject: [PATCH] better comment. --- Box/TemplateGenerators/TemplateGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Box/TemplateGenerators/TemplateGenerator.php b/Box/TemplateGenerators/TemplateGenerator.php index 9eb4625..04c935c 100755 --- a/Box/TemplateGenerators/TemplateGenerator.php +++ b/Box/TemplateGenerators/TemplateGenerator.php @@ -18,7 +18,7 @@ public function __construct(string $directory, string $fileName, string $flag = public function generate() { - // FIXME: template is undefined inside this class + // The error of undefined template() is not correct because template() function comes from the Box\Templates files. return $this->template($this->directory, $this->fileName, $this->flag); }