mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 08:17:18 +08:00
19 lines
295 B
PHP
19 lines
295 B
PHP
<?php
|
|
|
|
namespace SuiteCRM\Core\Base\Cli;
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
/**
|
|
* Class SuiteCommand
|
|
* @package SuiteCRM\Core\Base\Cli
|
|
*/
|
|
class SuiteCommand extends Command
|
|
{
|
|
protected $config;
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
}
|