Created
November 1, 2016 12:48
-
-
Save alanwillms/a5343e9eb13871e8fa58b8af91893ca4 to your computer and use it in GitHub Desktop.
ISP-6
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 Usuario extends ActiveRecord implements Identificavel | |
{ | |
... | |
public function getChaveAutenticacao() | |
{ | |
throw new NaoImplementadoException(); // :-( | |
} | |
public function validarChaveAutenticacao($chaveAutenticacao) | |
{ | |
throw new NaoImplementadoException(); // :-( | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment