Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. abstract class Connection {
  4.    
  5.     //Every connection should connect to a host
  6.     public function __construct($host) {
  7.         /...   
  8.     }
  9. }
  10.  
  11. abstract class DatabaseConnection {
  12.    
  13.     //But for a DB connection, you need more :D
  14.     public function __construct($host, $username, $password, $dbName, $creds = []) {
  15.         /...   
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement