for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// | Copyright (c) 2006~2019 http://thinkphp.cn All rights reserved.
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// | Author: yunwuxin <[email protected]>
declare (strict_types = 1);
namespace think\facade;
use think\Facade;
/**
* Class Console
* @package think\facade
* @method call(string $command, array $parameters = [], string $driver = 'buffer') static
*/
class Console extends Facade
{
* 获取当前Facade对应类名(或者已经绑定的容器对象标识)
* @access protected
* @return string
protected static function getFacadeClass()
return 'console';
}