Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. abstract class AppController
  2. {
  3.  
  4.  protected  $pdo;
  5.  
  6.   function __construct(\PDO $pdo)
  7.   {
  8.       $this->pdo=$pdo;
  9.   }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement