Created
November 1, 2016 12:39
-
-
Save alanwillms/faf6c1ac49b3232e0a5f839415a9dd79 to your computer and use it in GitHub Desktop.
ISP-4
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 | |
interface Identificavel | |
{ | |
public static function encontrarIdentidade($id); | |
public static function encontrarIdentidadePeloToken($token, $tipo = null); | |
public function getId(); | |
public function getChaveAutenticacao(); | |
public function validarChaveAutenticacao($chaveAutenticacao); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment