diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2024-02-01 00:18:42 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2024-02-01 00:18:42 +0300 |
commit | 9dd2345ecfff4f7d65ec106a8aee8d866c972585 (patch) | |
tree | f7330d1759b253cf9bc0e90bdade839aad3d1e48 /engine | |
parent | 696f4baeedab7710fd6aad474b5fe34f98093ca8 (diff) |
use .phps extension for skin files
Diffstat (limited to 'engine')
-rw-r--r-- | engine/skin.php | 2 |
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) { |