This file contains hidden or 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
<?php | |
/** | |
* Class NickNameGenerator | |
* | |
* Example: | |
* | |
* [email protected] => EM | |
* [email protected] => ED | |
* [email protected] => EF |
This file contains hidden or 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
<?php | |
/** | |
* change this definition in filters.php. | |
* | |
* the code checks if the auth parameters matches the credentials in your config file, if not | |
* a WWW-Authenticate Header will be send to the client. | |
*/ | |
Route::filter('auth.basic', function () { | |
$login = false; |