glamorous/value-object
Composer 安装命令:
composer require glamorous/value-object
包简介
Interface to have ValueObjects in your application. An Enum implementing this interface is also available.
README 文档
README
PHP Interface to create value objects to use in your project. Abstract Enum class available that uses the same interface.
Why?
ValueObjects are the ideal way to use in your project. You can force yourself in your project to have data in the way you want.
Documentation
The interface
The interface has three methods you need to implement.
- __toString(): This magic method is needed to represent the ValueObject as a string. Is usefull for logging.
- toNative(): This method must return an array, integer, string... This is needed to test if two value objects are the same or not and for serializing.
- equalsTo(ValueObject $object): The method requires another ValueObject instance. The
toNative()-method can be used to check if two value objects are the same. In the Enum it uses theequalsmethod from the parent.
The Enum
The included Enum extends the Enum from MyCLabs.
Additionally it implements the interface.
This way it's possible to use the functions toNative() and equalsTo() in your application.
More importantly an enumaration is also a value object, something that can't be changed when created.
When all those classes implements the same interface, its easier for the developer to use them through eachother.
Installation
You can install the package via composer:
$ composer require glamorous/value-object
Usage
Amount (Interface example)
Most of the people will say: "this is an integer, why do we need a value object?". Then you should read some articles about value objects again.
use Glamorous\ValueObject;
final class Amount implements ValueObject
{
private $amount;
public __construct(int $amount)
{
if ($amount < 0) {
throw new \InvalidArgumentException('Amount must be above zero or zero');
}
$this->amount = $amount;
}
}
Status (Enum example)
use Glamorous\Enum;
final class Status extends Enum
{
const OPEN = 'open';
const CLOSED = 'closed';
}
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details. To see a list of the contributors: all contributors.
License
The MIT License (MIT). Please see License File for more information.
glamorous/value-object 适用场景与选型建议
glamorous/value-object 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 17 次下载、GitHub Stars 达 1, 最近一次更新时间为 2018 年 06 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 glamorous/value-object 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 glamorous/value-object 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 17
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 9
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-06-25