Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2013-12-08 22:12:48 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2013-12-08 22:13:07 +0400
commit13297a804c38999aa790af93f1d599e3c809dc7d (patch)
treecdf7cb0b4df018853852a1af675041cd23944293 /core/Date.php
parent54bb5200d2567e51ff5a77dcd4dfa89195c169d9 (diff)
Fixes #4200, revised rest of @api classes/methods, closing ticket.
Diffstat (limited to 'core/Date.php')
-rw-r--r--core/Date.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/Date.php b/core/Date.php
index 5c2bbb9f66..a618b8749a 100644
--- a/core/Date.php
+++ b/core/Date.php
@@ -80,7 +80,7 @@ class Date
* @param string|int $dateString `'today'`, `'yesterday'`, `'now'`, `'yesterdaySameTime'`, a string with
* `'YYYY-MM-DD HH:MM:SS'` format or a unix timestamp.
* @param string $timezone The timezone of `$dateString`. If specified, `$dateString` will be converted
- * from UTC to this timezone before being used in the Date return value.
+ * from this timezone to UTC before being used in the Date return value.
* @throws Exception If `$dateString` is in an invalid format or if the time is before
* Tue, 06 Aug 1991.
* @return Date
@@ -268,7 +268,7 @@ class Date
}
/**
- * Returns true if the current date is older than the given `$date`.
+ * Returns `true` if the current date is older than the given `$date`.
*
* @param Date $date
* @return bool
@@ -279,7 +279,7 @@ class Date
}
/**
- * Returns true if the current date is earlier than the given `$date`.
+ * Returns `true` if the current date is earlier than the given `$date`.
*
* @param Date $date
* @return bool
@@ -373,7 +373,7 @@ class Date
}
/**
- * Returns true if current date is today.
+ * Returns `true` if current date is today.
*
* @return bool
*/