Model.php 239 B

1234567891011121314
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * MINZ - Copyright 2011 Marien Fressinaud
  5. * Sous licence AGPL3 <http://www.gnu.org/licenses/>
  6. */
  7. /**
  8. * The Minz_Model class represents a model in the MVC paradigm.
  9. */
  10. abstract class Minz_Model {
  11. }