yaroslavche / un-cefact
dev-master
2019-09-08 16:44 UTC
Requires
- php: >=7.2
This package is auto-updated.
Last update: 2024-11-09 04:52:45 UTC
README
The United Nations Centre for Trade Facilitation and Electronic Business (UN/CEFACT) is a subsidiary, intergovernmental body of the United Nations Economic Commission for Europe (UNECE) which serves as a focal point within the United Nations Economic and Social Council for trade facilitation recommendations and electronic business standards. It has global membership and its members are experts from intergovernmental organizations, individual countries' authorities and also from the business community.
Installation
$ composer require yaroslavche\un-cefact:dev-master
Usage
<?php use Yaroslavche\UnCefact\CommonCode\CommonCodeInterface; use Yaroslavche\UnCefact\CommonCode\NoUnit; use Yaroslavche\UnCefact\CommonCode\SpaceAndTime\Radian; use Yaroslavche\UnCefact\CommonCodeFactory; use Yaroslavche\UnCefact\UnCefact; NoUnit::COMMON_CODE; // 'C62' NoUnit::CONVERSION_FACTOR; // '1' NoUnit::DESCRIPTION; // 'Synonym: unit' NoUnit::GROUP_ID; // null NoUnit::GROUP_NUMBER; // null NoUnit::LEVEL; // '1' NoUnit::NAME; // 'one' NoUnit::QUANTITY; // null NoUnit::SECTOR; // null NoUnit::STATUS; // null NoUnit::SYMBOL; // '1' $radian = new Radian(); $radian->getCommonCode(); // 'C81' $radian->getConversionFactor(); // 'rad'; $radian->getDescription(); // null $radian->getGroupId(); // 2 $radian->getGroupNumber(); // 1 $radian->getLevel(); // '1' $radian->getName(); // 'radian' $radian->getQuantity(); // 'angle (plane)' $radian->getSector(); // 'Space and Time' $radian->getStatus(); // null $radian->getSymbol(); // 'rad' /** @var string $angleDegreeClass FQCN */ $angleDegreeClass = UnCefact::DD; // AngleDegree::class /** @var CommonCodeInterface $angleDegree */ $angleDegree = CommonCodeFactory::get($angleDegreeClass); // AngleDegree::class object $angleDegree = new $angleDegreeClass(); // eq