org_heigl / valueobjects
Some Value-Objects
1.0.3
2017-04-05 05:22 UTC
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is auto-updated.
Last update: 2026-03-06 10:32:49 UTC
README
Value Objects
A collection of ValueOpjects that help me make my life easier.
The collection currently includes
- Gis - A component for Geographic shapes like Points, Rectangles, Dimensions, Polygons and Shapes.
- Pixel - A Pixel-Representation
- DPI - A DPI-Representation
Stuff to be converted
$valueObject = new Pixels(2000); $dimension = new DotsPerInch(72); $converter = new Converter(new DotsPerInch(72)); $converter->from(new Pixels(2000)) ->to('\\Org_Heigl\\ValueObjects\\Length\\Meter') ->convert();