[ENTITY] Add Entity base class to all entities

This commit is contained in:
Hugo Sales
2020-08-15 06:18:23 +00:00
committed by Hugo Sales
parent d548dc9284
commit c8e8f1f057
30 changed files with 69 additions and 40 deletions

View File

@@ -17,6 +17,11 @@
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
// }}}
namespace App\Entity;
use App\Core\Entity;
use DateTimeInterface;
/**
* Entity for Notice Tag
*
@@ -31,12 +36,7 @@
* @copyright 2020 Free Software Foundation, Inc http://www.fsf.org
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
*/
namespace App\Entity;
use DateTimeInterface;
class NoteHashtag
class NoteHashtag extends Entity
{
// {{{ Autocode