Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
<?php | |
namespace Popy\Calendar\ValueObject; | |
/** | |
* Date representation having a "time" notion. | |
*/ | |
interface DateTimeRepresentationInterface extends DateRepresentationInterface | |
{ | |
/** | |
* Gets the time representation. | |
* | |
* @return Time | |
*/ | |
public function getTime(); | |
/** | |
* Gets a new date instance with the input Time representation. | |
* | |
* @param Time $time | |
* | |
* @return static | |
*/ | |
public function withTime(Time $time); | |
} |