1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-19 16:58:48 +02:00

Add some DateTime handling related PHPDocs

Summary:
As I was fiddling with an exception handling invalid DateTime, add some PHPDoc
for the next time someone needs to understand this code.

Test Plan: Use `get_class()` to check parameters and return values.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25793
This commit is contained in:
Andre Klapper 2024-08-20 13:05:49 +02:00
parent e1e1570c11
commit 9f07e5083d
2 changed files with 16 additions and 0 deletions

View file

@ -525,6 +525,10 @@ final class PhabricatorCalendarEventSearchEngine
}
}
/**
* @param PhabricatorSavedQuery $saved
* @return AphrontFormDateControlValue
*/
private function getQueryDateFrom(PhabricatorSavedQuery $saved) {
if ($this->calendarYear && $this->calendarMonth) {
$viewer = $this->requireViewer();

View file

@ -209,6 +209,12 @@ final class AphrontFormDateControlValue extends Phobject {
);
}
/**
* Create a DateTime object including timezone
* @param string $date Date, like "2024-08-20" or "2024-07-1" or such
* @param string|null $time Time, like "12:00 AM" or such
* @return DateTime|null
*/
private function newDateTime($date, $time) {
$date = $this->getStandardDateFormat($date);
$time = $this->getStandardTimeFormat($time);
@ -280,10 +286,16 @@ final class AphrontFormDateControlValue extends Phobject {
}
}
/**
* @return DateTime|null
*/
public function getDateTime() {
return $this->newDateTime($this->valueDate, $this->valueTime);
}
/**
* @return DateTimeZone
*/
private function getTimezone() {
if ($this->zone) {
return $this->zone;