Entity.php 375 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Base entity file.
  4. *
  5. * Creates the entity and makes it available.
  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 SWDB
  10. */
  11. /**
  12. * Entity superclass.
  13. *
  14. * Every other entity must inherit from this one.
  15. *
  16. * @category Entity
  17. */
  18. abstract class Entity{}
  19. ?>