composer fix-style

This commit is contained in:
laravel-ide-helper
2024-12-29 18:19:34 +00:00
committed by github-actions[bot]
parent 1353c67516
commit 68688b98fa
5 changed files with 59 additions and 63 deletions
+2 -2
View File
@@ -192,7 +192,7 @@ class MetaCommand extends Command
'configs' => $this->loadTemplate('configs')->pluck('name')->filter(),
'routes' => $this->loadTemplate('routes')->pluck('name')->filter(),
'views' => $this->loadTemplate('views')->pluck('key')->filter(),
];
}
@@ -229,7 +229,7 @@ class MetaCommand extends Command
protected function loadTemplate($name)
{
if (!isset($this->templates[$name])) {
$file = __DIR__ . '/../../php-templates/' . basename($name) .'.php';
$file = __DIR__ . '/../../php-templates/' . basename($name) . '.php';
$this->templates[$name] = $this->files->requireOnce($file);
}