populate Potter/Template namespace

This commit is contained in:
2026-03-20 17:40:25 -04:00
parent 26626a5abd
commit 6f14bdf1a9
3 changed files with 17 additions and 1 deletions

View File

@@ -13,7 +13,7 @@
],
"autoload": {
"psr-4": {
"Potter\\": "src/Potter/"
"Potter\\Template\\": "src/Potter/Template/"
}
},
"minimum-stability": "stable",

View File

@@ -0,0 +1,8 @@
<?php
declare(strict_types=1);
namespace Potter\Template;
interface TemplateInterface
{ }

View File

@@ -0,0 +1,8 @@
<?php
declare(strict_types=1);
namespace Potter\Template;
trait TemplateTrait
{ }