1
0

Cleanup, added docs & RC 2

This commit is contained in:
2017-04-04 08:26:11 +02:00
parent 21e67b0298
commit 3ee95398c4
18 changed files with 145 additions and 63 deletions

View File

@ -25,11 +25,19 @@ class Application
self::$container = $app->getContainer();
}
/**
* Gets dependency injection container
* @return Slim\Container
*/
public static function getContainer()
{
return self::$container;
}
/**
* Get Slim application object
* @return Slim\App;
*/
public static function getApplication()
{
return self::$app;