Source for file SimpleAuthenticator.php
Documentation is available at SimpleAuthenticator.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 6: * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
- 7: *
- 8: * This source file is subject to the "Nette license" that is bundled
- 9: * with this package in the file license.txt.
- 10: *
- 11: * For more information please see http://nettephp.com
- 12: *
- 18: */
- 32: /**
- 33: * Trivial implementation of IAuthenticator.
- 34: *
- 38: */
- 40: {
- 45: /**
- 47: */
- 49: {
- 51: }
- 55: /**
- 45: /**
- 46: * Performs an authentication against e.g. database.
- 47: * and returns IIdentity on success or throws AuthenticationException
- 48: *
- 62: */
- 64: {
- 69: // matched!
- 71: }
- 74: }
- 75: }
- 78: }
- 80: }