building-sign/vendor/topthink/think-queue/src/facade/Queue.php

19 lines
236 B
PHP
Raw Normal View History

2023-01-09 16:41:41 +08:00
<?php
namespace think\facade;
use think\Facade;
/**
* Class Queue
* @package think\facade
* @mixin \think\Queue
*/
class Queue extends Facade
{
protected static function getFacadeClass()
{
return 'queue';
}
}