Files
lichterei-web/kirby/src/Cms/S.php
Bastian Allgeier 99c36fa137 Upgrade to 3.5.1
2021-01-19 12:20:38 +01:00

26 lines
467 B
PHP
Executable File

<?php
namespace Kirby\Cms;
use Kirby\Toolkit\Facade;
/**
* Shortcut to the session object
*
* @package Kirby Cms
* @author Bastian Allgeier <bastian@getkirby.com>
* @link https://getkirby.com
* @copyright Bastian Allgeier GmbH
* @license https://getkirby.com/license
*/
class S extends Facade
{
/**
* @return \Kirby\Session\Session
*/
public static function instance()
{
return App::instance()->session();
}
}