Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
SolarTime | 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; | |
/** | |
* Minimal implementatuon. | |
*/ | |
class SolarTime extends Date implements DateTimeRepresentationInterface, DateSolarRepresentationInterface | |
{ | |
use DateTimeTrait; | |
use DateSolarTrait; | |
} |