openclassify/addons/default/visiosoft/advs-module/src/Support/_helpers.php
2020-10-02 17:31:51 +03:00

10 lines
304 B
PHP

<?php
use Illuminate\Contracts\Bus\Dispatcher;
use Visiosoft\AdvsModule\Adv\Command\appendRequestURL;
if (!function_exists('fullLink')) {
function fullLink($request, $url, $newParameters = array()) {
return app(Dispatcher::class)->dispatch(new appendRequestURL($request, $url, $newParameters));
}
}