This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/Entities/Entity.php
Marcin Kurczewski b7de8ae0bf Added proof of concept for Dao system
Fixup first commit
2014-10-18 18:48:15 +02:00

7 lines
84 B
PHP

<?php
namespace Szurubooru\Entities;
abstract class Entity
{
public $id = null;
}