/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
vendor
/
illuminate
/
events
/
Upload File
HOME
<?php namespace Illuminate\Events; use Closure; if (! function_exists('Illuminate\Events\queueable')) { /** * Create a new queued Closure event listener. * * @param \Closure $closure * @return \Illuminate\Events\QueuedClosure */ function queueable(Closure $closure) { return new QueuedClosure($closure); } }