peekandpoke / php-types
Basic types for PHP like Enums, LocalDate etc...
v1.2.0
2018-02-12 08:14 UTC
Requires (Dev)
- phpunit/phpunit: ^4.8.36
README
Why PHP-Types
There are some types that PHP does not provide as part of the language, e.g.:
-
Enums
-
LocalDate (a date object that enforces creation WITH timezone)
TODO
( ) LocalDate::isSameDay
( ) LocalDate::isSameWeek
( ) LocalDate::isSameMonth
( ) LocalDate::isSameYear
( ) LocalDate::isSameDecade
( ) LocalDate::isSameCentury
( ) LocalDate::isSameMillennium
( ) extract all DST (daylight saving time aware methods from LocalDate)
$date->dst()->getShift() $date->dst()->modifyByDays() ...