Skip to content

Instantly share code, notes, and snippets.

@mlimaloureiro
Created October 29, 2014 08:32
Show Gist options
  • Save mlimaloureiro/9b251a478b08061be22e to your computer and use it in GitHub Desktop.
Save mlimaloureiro/9b251a478b08061be22e to your computer and use it in GitHub Desktop.
class SessionLogger
{
public function log()
{
$file = fopen('logger.txt', 'a');
fwrite($file, Session::get('id') . ' performed some action';
fclose($file);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment