Skip to content

Instantly share code, notes, and snippets.

@aasumitro
Created February 5, 2018 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aasumitro/1c2dfe1ecdcb5a24b930348ef90ef470 to your computer and use it in GitHub Desktop.
Save aasumitro/1c2dfe1ecdcb5a24b930348ef90ef470 to your computer and use it in GitHub Desktop.
config dependencies.php slim 3
<?php
/*
|----------------------------------------------------
| Container |
|----------------------------------------------------
*/
$container = $app->getContainer();
/*
|----------------------------------------------------
| Controller |
|----------------------------------------------------
*/
$container['TestController'] = function ($container) {
return new \App\Controllers\TestController($container);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment