MOON
Server: Apache
System: Linux server.royaltuning.hu 4.18.0-425.13.1.el8_7.x86_64 #1 SMP Tue Feb 21 04:20:52 EST 2023 x86_64
User: royaltuning (1001)
PHP: 8.2.31
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //var/www/html/app/Scaffold/Module/Generators/FilesGenerator.php
<?php

namespace FleetCart\Scaffold\Module\Generators;

use Illuminate\Contracts\Filesystem\FileNotFoundException;

class FilesGenerator extends Generator
{
    /**
     * Generate the given files.
     *
     * @param  array $files
     * @return void
     */
    public function generate(array $files)
    {
        foreach ($files as $stub => $file) {
            $this->finder->put(
                $this->getModulesPath($file),
                $this->getContentFor($stub)
            );
        }
    }

    /**
     * Generate the base module service provider.
     *
     * @return $this
     */
    public function generateModuleProvider()
    {
        $this->finder->put(
            $this->getModulesPath("Providers/{$this->name}ServiceProvider.php"),
            $this->getContentFor('providers/module-service-provider.stub')
        );

        return $this;
    }

    /**
     * Get the content for the given file.
     *
     * @param string $stub
     * @return string
     *
     * @throws FileNotFoundException
     */
    private function getContentFor($stub)
    {
        $stub = $this->finder->get($this->getStubPath($stub));

        return str_replace(
            ['$MODULE$', '$LOWERCASE_MODULE$', '$PLURAL_MODULE$', '$UPPERCASE_PLURAL_MODULE$'],
            [$this->name, strtolower($this->name), strtolower(str_plural($this->name)), str_plural($this->name)],
            $stub
        );
    }
}