Created
September 22, 2019 01:14
-
-
Save LarryBarker/8bd1b8ac414e40c814b6373ee4b82541 to your computer and use it in GitHub Desktop.
Dummy Auth class to fix Corcel error
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
<?php | |
/** | |
* Class Auth | |
* Dirty hack used to avoid error within corcel | |
*/ | |
class Auth { | |
public static function provider($name, $callback){ | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment