rewrite project

This commit is contained in:
Km.Van
2025-08-06 22:03:32 +08:00
parent 07f2a32298
commit 29089a4de4
409 changed files with 9807 additions and 22638 deletions

View File

@@ -12,7 +12,7 @@ final class StyleGeneration
{
[
'styleFilePath' => $this->styleFilePath,
'distFilePath' => $this->distFilePath,
'distFilePath' => $this->distFilePath,
] = $args;
if ( ! is_file($this->styleFilePath)) {
@@ -43,7 +43,7 @@ final class StyleGeneration
return false;
}
$dist = str_replace('{INN_STYLE}', $style, $dist);
$dist = str_replace('{{X_STYLE}}', $style, $dist);
return (bool) file_put_contents($this->distFilePath, $dist);
}