paths = array_map(function ($path) { return rtrim($path, '\/'); }, $paths); // Assume a standard Composer directory structure unless specified $this->paths['vendor'] = $this->vendor ?? $this->base.'/vendor'; } public function __get($name): ?string { return $this->paths[$name] ?? null; } }