Files
lichterei-web/kirby/src/Cms/S.php
Bastian Allgeier 418db4b09b Upgrade to 3.0.3
2019-03-05 10:55:03 +01:00

21 lines
284 B
PHP
Executable File

<?php
namespace Kirby\Cms;
use Kirby\Session\Session;
use Kirby\Toolkit\Facade;
/**
* Shortcut to the session object
*/
class S extends Facade
{
/**
* @return Session
*/
public static function instance()
{
return App::instance()->session();
}
}