tyam/fadoc
Composer 安装命令:
composer require tyam/fadoc
包简介
Form Array to Domain Object Converter/Validator
README 文档
README
fadoc automatically converts Form-Arrays and Domain-Objects to each other according to type declarations of methods.
Feature
- Conversion is done automatically according to method declarations of domain objects. No Form classes.
- You can define validation logics on domain objects.
- Supports factories, abstract classes/interfaces.
Basic Usage
class Point { private $x, y; public function __construct(int $x, int $y) {...} } class Circle { private $c, $r; public function __construct(Point $c, int $r) {...} public function intersects(Circle $another): bool {...} } $form = ['another' => [ 'c' => ['x' => '0', 'y' => '20'], 'r' => '10' ]]; $c = new tyam\fadoc\Converter(); $condition = $c->objectize(['my\domain\Circle', 'intersects'], $form); if ($condition->isFine()) { list($another) = $condition->get(); $result = $myCircle->intersects($another); } else { // validation error... }
Installation
$ composer require tyam/fadoc
fadoc depends on tyam/condition, which also is my library.
Documentation
Lisence
MIT
统计信息
- 总下载量: 72
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-01-29