added key and session tasks.

This commit is contained in:
Taylor Otwell
2012-01-24 15:02:51 -06:00
parent 20b4cf7bb8
commit 27fdb1e3f5
7 changed files with 85 additions and 5 deletions

View File

@@ -35,6 +35,17 @@ IoC::singleton('task: key', function()
return new Tasks\Key;
});
/**
* The session task is responsible for performing tasks related
* to the session store of the application. It can do things
* such as generating the session table or clearing expired
* sessions from storage.
*/
IoC::singleton('task: session', function()
{
return new Tasks\Session;
});
/**
* The bundle repository is responsible for communicating with
* the Laravel bundle sources to get information regarding any