aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2024-02-01 00:18:42 +0300
committerEvgeny Zinoviev <me@ch1p.io>2024-02-01 00:18:42 +0300
commit9dd2345ecfff4f7d65ec106a8aee8d866c972585 (patch)
treef7330d1759b253cf9bc0e90bdade839aad3d1e48 /engine
parent696f4baeedab7710fd6aad474b5fe34f98093ca8 (diff)
use .phps extension for skin files
Diffstat (limited to 'engine')
-rw-r--r--engine/skin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/skin.php b/engine/skin.php
index 6150668..a589370 100644
--- a/engine/skin.php
+++ b/engine/skin.php
@@ -96,7 +96,7 @@ class SkinContext {
function __construct(string $namespace) {
$this->ns = $namespace;
- require_once APP_ROOT.str_replace('\\', DIRECTORY_SEPARATOR, $namespace).'.skin.php';
+ require_once APP_ROOT.str_replace('\\', DIRECTORY_SEPARATOR, $namespace).'.phps';
}
function __call($name, array $arguments) {