mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
The installation has been fixed.
This commit is contained in:
parent
ee7ce43bf3
commit
a65dea3e1f
@ -2,12 +2,12 @@
|
||||
"name": "visiosoft/advs-module",
|
||||
"type": "streams-addon",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/helpers.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Visiosoft\\AdvsModule\\": "src/"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"src/Support/_helpers.php"
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"wirelab/language_switcher-plugin": "^1.3",
|
||||
|
||||
@ -0,0 +1,10 @@
|
||||
<?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));
|
||||
}
|
||||
}
|
||||
@ -1,8 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Contracts\Bus\Dispatcher;
|
||||
use Visiosoft\AdvsModule\Adv\Command\appendRequestURL;
|
||||
|
||||
function fullLink($request, $url, $newParameters = array()) {
|
||||
return app(Dispatcher::class)->dispatch(new appendRequestURL($request, $url, $newParameters));
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user