arrowsphere/entities

用于管理实体的 PHP 库

0.1.0 2021-10-06 08:05 UTC

This package is auto-updated.

Last update: 2024-09-08 20:29:41 UTC


README

Latest Stable Version Minimum PHP Version Build Status

此包提供了一个抽象类和注解,用于以标准方式管理 ArrowSphere 中的实体。

安装

使用以下命令安装最新版本

$ composer require arrowsphere/entities

基本用法

<?php

use ArrowSphere\Entities\AbstractEntity;

class MyEntity extends AbstractEntity
{
    
}