| 123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Entity superclass.
- *
- * Every other entity must inherit from this one. It represents a database
- * entity.
- */
- abstract class Entity{
- /**
- * Database connection.
- */
- public $db;
- /**
- * Constructor.
- *
- * Sets the database conection and the language.
- *
- * @param SQLite3 $db Connection to the database.
- */
- public function __construct($db){
- $this->db = $db;
- }
- }
- ?>
|