Skip to content

Instantly share code, notes, and snippets.

View samadfcibd's full-sized avatar

Abdus Samad samadfcibd

View GitHub Profile
<?php
interface AuthenticationService
{
public function authenticate($email);
}
class GoogleAuthenticationService implements AuthenticationService
{
public function authenticate($email)