mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
10 lines
304 B
PHP
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));
|
|
}
|
|
} |