25 lines
459 B
PHP
25 lines
459 B
PHP
<?php
|
|
|
|
namespace Kirby\Cms;
|
|
|
|
use Kirby\Toolkit\Facade;
|
|
|
|
/**
|
|
* Shortcut to the request object
|
|
*
|
|
* @package Kirby Cms
|
|
* @author Bastian Allgeier <bastian@getkirby.com>
|
|
* @link https://getkirby.com
|
|
* @copyright Bastian Allgeier
|
|
* @license https://getkirby.com/license
|
|
*/
|
|
class R extends Facade
|
|
{
|
|
/**
|
|
* @return \Kirby\Http\Request
|
|
*/
|
|
public static function instance()
|
|
{
|
|
return App::instance()->request();
|
|
}
|
|
}
|