mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 01:10:42 +08:00
20 lines
295 B
PHP
20 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();
|
||
|
}
|
||
|
}
|