peekandpoke/php-types

Basic types for PHP like Enums, LocalDate etc...

v1.2.0 2018-02-12 08:14 UTC

This package is not auto-updated.

Last update: 2024-04-27 22:29:56 UTC


README

Code Coverage Scrutinizer Code Quality Build Status

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() ...