| Code Coverage | ||||||||||
| Classes and Traits | Functions and Methods | Lines | ||||||||
| Total | n/a | 0 / 0 | n/a | 0 / 0 | CRAP | n/a | 0 / 0 | |||
| Standard | n/a | 0 / 0 | n/a | 0 / 0 | 0 | n/a | 0 / 0 | |||
| <?php | |
| namespace Popy\Calendar\ValueObject\DateRepresentation; | |
| use Popy\Calendar\ValueObject\DateTimeRepresentationInterface; | |
| use Popy\Calendar\ValueObject\DateSolarRepresentationInterface; | |
| use Popy\Calendar\ValueObject\DateFragmentedRepresentationInterface; | |
| /** | |
| * "Standard" time representation (like Gregorian calendar) : | |
| * - is a solar date | |
| * - has date parts (monthes) and transversals (weekyear, weekindex, day of week) | |
| * - as time (hour, minute, seconds, milliseconds, microseconds) | |
| */ | |
| class Standard extends Date implements DateTimeRepresentationInterface, DateSolarRepresentationInterface, DateFragmentedRepresentationInterface | |
| { | |
| use DateTimeTrait; | |
| use DateSolarTrait; | |
| use DateFragmentedTrait; | |
| } |