Session handling
Using version 5.7.4.2:
It is just an opinion based question. Is it?
I use session handling like this:
[code]
$session = \Core::make('session');
$session->set('foo', 'bar');
$session->get('foo'); // gives 'bar'
$session->remove('foo');
[/code]
…