Entity.php 392 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Entity superclass file.
  4. *
  5. * Provides a class to extend all entities from.
  6. *
  7. * @author Iñigo Valentin <i@inigovalentin.com>
  8. * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
  9. * @package IVV
  10. */
  11. /**
  12. * Entity superclass.
  13. *
  14. * Every other entity must inherit from this one. It represents a database
  15. * entity.
  16. */
  17. abstract class Entity{}