Просмотр файла mc-2.7.0/libraries/model.php

Размер файла: 410B
  1. <?php
  2.  
  3. /*
  4. * To change this license header, choose License Headers in Project Properties.
  5. * To change this template file, choose Tools | Templates
  6. * and open the template in the editor.
  7. */
  8.  
  9. /**
  10. * Description of model
  11. *
  12. * @author Олег
  13. */
  14. class model {
  15.  
  16. /**
  17. *
  18. * @var MySQL
  19. */
  20. protected $db;
  21.  
  22. public function __construct() {
  23. $this->db = Registry::get('db');
  24. }
  25.  
  26. }