Directory : /home/proudlyafrican/www/vendor/laravel/framework/src/Illuminate/Foundation/Bus/ |
Current File : /home/proudlyafrican/www/vendor/laravel/framework/src/Illuminate/Foundation/Bus/Dispatchable.php |
<?php namespace Illuminate\Foundation\Bus; trait Dispatchable { /** * Dispatch the job with the given arguments. * * @return \Illuminate\Foundation\Bus\PendingDispatch */ public static function dispatch() { return new PendingDispatch(new static(...func_get_args())); } }