Skip to content

Instantly share code, notes, and snippets.

@JamesTheHacker
Created December 1, 2016 16:39
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 JamesTheHacker/addf937e5de1ad2fa53e5af9daebe90d to your computer and use it in GitHub Desktop.
Save JamesTheHacker/addf937e5de1ad2fa53e5af9daebe90d to your computer and use it in GitHub Desktop.
$container['EmailService'] = function($c) {
return new \StudentApp\Services\EmailService($c);
};
// Replace with this
$container['\StudentApp\Services\EmailService::class'] = function($c) {
return new \StudentApp\Services\EmailService();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment