Why there is no info in the docs on how to display the complete session content with all the variables and values that it contains?
I tried something like this:
print_r($this->session);
but It gives me this:
Phalcon\Session\Adapter\Files Object ( [_uniqueId:protected] => [_started:protected] => 1 [_options:protected] => )
Which is not what I wanted.
I also tried:
print_r( $this->session->get() );
But I get this error: Wrong number of parameters