Created
May 14, 2013 12:37
-
-
Save davedevelopment/5575571 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$app['repository.factory'] = $app->protect(function($class) use ($app) { | |
return $app->share(function ($app) use ($class) { | |
return new $class($app['db']); | |
}); | |
}); | |
$app['users'] = $app['repository.factory']("User"); | |
$app['groups'] = $app['repository.factory']("Groups"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment