1 | <?php |
||
22 | class RoundDateTime implements ResultModifier |
||
23 | { |
||
24 | /** |
||
25 | * @var int How may seconds to round time |
||
26 | */ |
||
27 | private $roundSeconds; |
||
28 | |||
29 | /** |
||
30 | * @param int $roundSeconds How may seconds to round time |
||
31 | */ |
||
32 | public function __construct($roundSeconds) |
||
36 | |||
37 | /** |
||
38 | * @param AbstractQuery $query |
||
39 | */ |
||
40 | public function modify(AbstractQuery $query) |
||
55 | } |
||
56 |