use .phps extension for skin files

This commit is contained in:
Evgeny Zinoviev 2024-02-01 00:18:42 +03:00
parent 696f4baeed
commit 9dd2345ecf
8 changed files with 2 additions and 2 deletions

View File

@ -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) {