HEX
Server: LiteSpeed
System: Linux sv4.hami.host 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: armgroup (1008)
PHP: 8.2.32
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open, mail, socket_create, socket_create_listen, socket_create_pair, link, dl, openlog, syslog, stream_socket_server, curl_multi_init
Upload Files
File: /home/armgroup/libs/vendor/consoletvs/charts/src/Commands/CreateChart.php
<?php

declare(strict_types=1);

namespace ConsoleTVs\Charts\Commands;

use Illuminate\Console\GeneratorCommand;
use Illuminate\Support\Str;

class CreateChart extends GeneratorCommand
{
    /**
     * The name and signature of the console command.
     */
    protected $signature = 'make:chart {name : Determines the chart name}';

    /**
     * The console command description.
     */
    protected $description = 'Create a new chart class';

    /**
     * The type of class being generated.
     */
    protected $type = 'Chart';

    /**
     * Gets the stub to generate the chart.
     */
    protected function getStub()
    {
        return __DIR__.'/stubs/chart.stub';
    }

    /**
     * Determines the namespace where the charts will be
     * created at.
     */
    protected function getDefaultNamespace($rootNamespace)
    {
        return $rootNamespace.'\Charts';
    }

    /**
     * Determines the name of the stub to generate.
     */
    protected function getNameInput()
    {
        return Str::of($this->argument('name'))
            ->trim()
            ->camel()
            ->ucfirst();
    }
}