Use $this->now instead of passing it as parameter.

This commit is contained in:
Tim Schumacher 2014-09-21 18:36:48 +02:00
parent 3a16813fc8
commit 93514517e9

12
RelativeDateParser.php Normal file → Executable file
View file

@ -250,11 +250,15 @@ class RelativeDateParser {
}
public function getCurrent(DateTime $now) {
return $this->datetype->getCurrent($now);
public function getCurrent() {
return $this->datetype->getCurrent($this->now);
}
public function getNext(DateTime $now) {
return $this->datetype->getNext($now);
public function getNext() {
return $this->datetype->getNext($this->now);
}
public function setNow(DateTime $now) {
$this->now = $now;
}
}