21 lines
284 B
PHP
Executable File
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();
|
|
}
|
|
}
|