| 123456789101112131415161718 |
- <?php
- /**
- * Entity superclass file.
- *
- * Provides a class to extend all entities from.
- *
- * @author Iñigo Valentin <i@inigovalentin.com>
- * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
- * @package IVV
- */
- /**
- * Entity superclass.
- *
- * Every other entity must inherit from this one. It represents a database
- * entity.
- */
- abstract class Entity{}
|