Skip to content

Instantly share code, notes, and snippets.

@COil
Created October 9, 2012 17:38
Show Gist options
  • Save COil/3860246 to your computer and use it in GitHub Desktop.
Save COil/3860246 to your computer and use it in GitHub Desktop.
start() of Session.php
/**
* Starts the session storage.
*
* @api
*/
public function start()
{
if (true === $this->started) {
return;
}
parent::start();
$this->flag = $this->storage->read('flag');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment