Entity.php 492 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Base entity file.
  4. *
  5. * Creates the entity and makes it available.
  6. *
  7. * @category Entity
  8. */
  9. /**
  10. * Entity superclass.
  11. *
  12. * Every other entity must inherit from this one. It represents a database
  13. * entity.
  14. *
  15. * @abstract
  16. * @category Entity
  17. */
  18. abstract class Entity{
  19. /**
  20. * Constructor.
  21. *
  22. * Empty.
  23. */
  24. public function __construct(){
  25. }
  26. }
  27. ?>