1 | <?php |
||
11 | class RoundDateTime implements ResultModifier |
||
12 | { |
||
13 | /** |
||
14 | * @var int How may seconds to round time |
||
15 | */ |
||
16 | private $roundSeconds; |
||
17 | |||
18 | /** |
||
19 | * @param int $roundSeconds How may seconds to round time |
||
20 | */ |
||
21 | public function __construct($roundSeconds) |
||
25 | |||
26 | /** |
||
27 | * @param AbstractQuery $query |
||
28 | */ |
||
29 | public function modify(AbstractQuery $query) |
||
42 | } |
||
43 |