MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/help.cafsindia.com/vendor/uvdesk/core-framework/Guides/BootstrappingProject.php
<?php

namespace Webkul\UVDesk\CoreFrameworkBundle\Guides;

use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

class BootstrappingProject extends Command
{
    private static $console_guide_resource = __DIR__ . "/../Templates/CLI/Guides";

    protected function configure()
    {
        $this->setName('uvdesk:guides:bootstrapping-project');
        $this->setDescription('Walks you through on how to provide the minimal setup for your support system.');
    }
    
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $consoleOutputText = require self::$console_guide_resource . "/uvdesk-bootstrapping-guide.php";
        
        $output->writeln($consoleOutputText);
    }
}