| 1234567891011121314151617181920 |
- <?php
- /**
- * Base entity file.
- *
- * Creates the entity and makes it available.
- *
- * @author Iñigo Valentin <i@inigovalentin.com>
- * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
- * @package SWDB
- */
- /**
- * Entity superclass.
- *
- * Every other entity must inherit from this one.
- *
- * @category Entity
- */
- abstract class Entity{}
- ?>
|