Skip to content

Instantly share code, notes, and snippets.

@exileed
Created January 29, 2017 16:51
Show Gist options
  • Save exileed/5c33c1753578aab665b94d866468ad84 to your computer and use it in GitHub Desktop.
Save exileed/5c33c1753578aab665b94d866468ad84 to your computer and use it in GitHub Desktop.
<?php
interface ClientInterface{
// mentods
public link():string;
}
class ClientServer1 implements ClientInterface{
}
class ClientServer2 implements ClientInterface{
}
class Auth {
private $client;
public function __construct (ClientInterface $client){
$this->client = $client;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment