Skip to content

Instantly share code, notes, and snippets.

@mvnp
Created December 18, 2017 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvnp/869bc6d546fd6a16c90128b325328013 to your computer and use it in GitHub Desktop.
Save mvnp/869bc6d546fd6a16c90128b325328013 to your computer and use it in GitHub Desktop.
<?php
class Usuario {
public function login($email, $senha){
# faz login
}
}
// Instancia o objeto e usa os métodos
$entrar = new Usuario;
$entrar->login("email", "senha");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment