commerceguys/enum
最新稳定版本:v1.0
Composer 安装命令:
composer require commerceguys/enum
包简介
A PHP 5.4+ enumeration library.
README 文档
README
A PHP 5.4+ enumeration library.
Class constants are frequently used to denote sets of allowed values. By grouping them in an enumeration class, we gain the ability to add helper methods, list all possible values and validate values against them.
A commerceguys/addressing example:
namespace CommerceGuys\Addressing\Enum; use CommerceGuys\Enum\AbstractEnum; /** * Enumerates available locality types. */ final class LocalityType extends AbstractEnum { const CITY = 'city'; const DISTRICT = 'district'; // We can provide a getDefault() method here, or anything else. } LocalityType::getAll(); // ['CITY' => 'city', 'DISTRICT' => 'district'] LocalityType::getKey('city'); // 'CITY' LocalityType::exists('city'); // true LocalityType::assertExists('invalid value'); // InvalidArgumentException LocalityType::assertAllExist(['district', 'invalid value']); // InvalidArgumentException
Meanwhile, on the AddressFormat:
// The AddressFormatInterface is now free of LOCALITY_TYPE_ constants. class AdressFormat implements AddressFormatInterface { public function setLocalityType($localityType) { LocalityType::assertExists($localityType); $this->localityType = $localityType; } }
The reason why this library was made instead of reusing myclabs/php-enum was that we didn't want to allow enumerations to be instantiated.
统计信息
- 总下载量: 1.9M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 97
- 点击次数: 1
- 依赖项目数: 8
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-02-27