Skip to content

Instantly share code, notes, and snippets.

@LarryBarker
Created September 22, 2019 01:14
Show Gist options
  • Save LarryBarker/8bd1b8ac414e40c814b6373ee4b82541 to your computer and use it in GitHub Desktop.
Save LarryBarker/8bd1b8ac414e40c814b6373ee4b82541 to your computer and use it in GitHub Desktop.
Dummy Auth class to fix Corcel error
<?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