g4/factory

factory PHP 库

1.4.0 2017-08-15 12:07 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:09:30 UTC


README

factory - PHP

安装

通过 Composer

composer require g4/factory

用法

接口

<?php

namespace G4\Factory;

interface CreateInterface
{
    public function create();
}

interface MappingInterface
{
    public function id();

    public function map();
}

interface ReconstituteInterface
{
    public function reconstitute();
}

开发

安装依赖

$ composer install

运行测试

$ composer test

许可证

(MIT 许可证) 详细信息请参阅 LICENSE 文件...