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/a1ff2161185db0271fe8bb86225d082d to your computer and use it in GitHub Desktop.
Save JamesTheHacker/a1ff2161185db0271fe8bb86225d082d to your computer and use it in GitHub Desktop.
/*
* Email Verification
*/
$container['EmailService'] = function($c) {
return new \StudentApp\Services\EmailService($c);
};
/*
* Email Verification
*/
$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