Guest User

Untitled

a guest
Jul 18th, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. abstract class BasePresenter extends Nette\Application\UI\Presenter
  2. {
  3.     private $suppliers;
  4.  
  5.     public function __construct() {
  6.         parent::__construct();
  7.         $this->suppliers = new Suppliers;
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment