Move laravel helpers back in, deprecate perpetually

This commit is contained in:
Alexander Skvortsov 2021-03-17 16:58:02 -04:00 committed by Alexander Skvortsov
parent 783c563305
commit d29495203b

View File

@ -7,6 +7,7 @@
* LICENSE file that was distributed with this source code. * LICENSE file that was distributed with this source code.
*/ */
use Flarum\Foundation\Paths;
use Illuminate\Container\Container; use Illuminate\Container\Container;
if (! function_exists('resolve')) { if (! function_exists('resolve')) {
@ -23,10 +24,14 @@ if (! function_exists('resolve')) {
} }
} }
// The following are all deprecated perpetually.
// They are needed by some laravel components we use (e.g. task scheduling)
// They should NOT be used in extension code.
if (! function_exists('app')) { if (! function_exists('app')) {
/** /**
* @deprecated beta 16, remove beta 17. Use container() instead. * @deprecated perpetually.
* Get the available container instance.
* *
* @param string $make * @param string $make
* @param array $parameters * @param array $parameters
@ -42,9 +47,55 @@ if (! function_exists('app')) {
} }
} }
if (!function_exists('base_path')) {
/**
* @deprecated perpetually.
*
* Get the path to the base of the install.
*
* @param string $path
* @return string
*/
function base_path($path = '')
{
return resolve(Paths::class)->base.($path ? DIRECTORY_SEPARATOR.$path : $path);
}
}
if (!function_exists('public_path')) {
/**
* @deprecated perpetually.
*
* Get the path to the public folder.
*
* @param string $path
* @return string
*/
function public_path($path = '')
{
return resolve(Paths::class)->public.($path ? DIRECTORY_SEPARATOR.$path : $path);
}
}
if (!function_exists('storage_path')) {
/**
* @deprecated perpetually.
*
* Get the path to the storage folder.
*
* @param string $path
* @return string
*/
function storage_path($path = '')
{
return resolve(Paths::class)->storage.($path ? DIRECTORY_SEPARATOR.$path : $path);
}
}
if (! function_exists('event')) { if (! function_exists('event')) {
/** /**
* @deprecated beta 16, removed in beta 17 * @deprecated perpetually.
*
* Fire an event and call the listeners. * Fire an event and call the listeners.
* *
* @param string|object $event * @param string|object $event
@ -54,6 +105,6 @@ if (! function_exists('event')) {
*/ */
function event($event, $payload = [], $halt = false) function event($event, $payload = [], $halt = false)
{ {
return app('events')->dispatch($event, $payload, $halt); return resolve('events')->dispatch($event, $payload, $halt);
} }
} }