+add default api.core.authsystemdefault

This commit is contained in:
xdrm-brackets 2018-02-17 18:27:46 +01:00
parent a76185db96
commit 1895963261
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<?php
/**************************
* API AuthSystem *
* 08-12-2016 *
***************************
* Designed & Developed by *
* xdrm-brackets *
***************************
* https://xdrm.io/ *
**************************/
namespace api\core;
use \error\core\Err;
use \error\core\Error;
class AuthSystemDefault implements AuthSystem{
/* VERIFICATION DES ACCES EN FONCTION DE PERMISSIONS ATTENDUES
*
* @expected<array> Liste des permissions attendues
*
* @return error<Error> Erreur associée à la permission (Success/PermissionError/TokenError/etc)
*
*/
public static function permission($expected){
return new Error(Err::Success);
}
}
?>