관리-도구
편집 파일: GeneratorPath.php
<?php namespace Nwidart\Modules\Support\Config; use Nwidart\Modules\Traits\PathNamespace; class GeneratorPath { use PathNamespace; private $path; private $generate; private $namespace; public function __construct($config) { if (is_array($config)) { $this->path = $config['path']; $this->generate = $config['generate']; $this->namespace = $config['namespace'] ?? $this->path_namespace(ltrim($config['path'], config('modules.paths.app_folder', ''))); return; } $this->path = $config; $this->generate = (bool) $config; $this->namespace = $this->path_namespace(ltrim($config, config('modules.paths.app_folder', ''))); } public function getPath() { return $this->path; } public function generate(): bool { return $this->generate; } public function getNamespace() { return $this->studly_namespace($this->namespace); } }