9 lines
221 B
PHP
9 lines
221 B
PHP
<?php
|
|
|
|
if( !function_exists( 'xfRoute' ) ){
|
|
|
|
function xfRoute( string $routeName, array $arguments = [] ): string {
|
|
return app(\App\Services\XenforoService::class)->getRoute( $routeName, $arguments );
|
|
}
|
|
}
|