for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/vuongxuongminh/laravel-async
*
* @copyright (c) Vuong Xuong Minh
* @license [MIT](https://opensource.org/licenses/MIT)
*/
namespace VXM\Async;
use Illuminate\Support\Facades\Facade;
* @method static Async run(callable|string $job, $listener)
* @method static array wait()
* @author Vuong Minh <[email protected]>
* @since 1.0.0
class AsyncFacade extends Facade
{
* {@inheritdoc}
protected static function getFacadeAccessor()
return 'async';
}