diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-15 15:15:27 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-06-15 19:15:13 +0200 |
commit | 7f3e0e5e428ca25d379f2f57c0e4d8c01f2b7972 (patch) | |
tree | 82a82f316ca3fe1a1432eb884d2fc7a3c22cecc0 /phpBB | |
parent | 706484c80d7b5f5958e734fb63907b91930203a5 (diff) | |
download | forums-7f3e0e5e428ca25d379f2f57c0e4d8c01f2b7972.tar forums-7f3e0e5e428ca25d379f2f57c0e4d8c01f2b7972.tar.gz forums-7f3e0e5e428ca25d379f2f57c0e4d8c01f2b7972.tar.bz2 forums-7f3e0e5e428ca25d379f2f57c0e4d8c01f2b7972.tar.xz forums-7f3e0e5e428ca25d379f2f57c0e4d8c01f2b7972.zip |
[ticket/12715] Cleanup comments in \phpbb\datetime
PHPBB3-12715
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/datetime.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/datetime.php b/phpBB/phpbb/datetime.php index 47f742f802..9c9292a8e4 100644 --- a/phpBB/phpbb/datetime.php +++ b/phpBB/phpbb/datetime.php @@ -39,8 +39,8 @@ class datetime extends \DateTime * the user context and modify the timezone to the users selected timezone if one is not set. * * @param string $time String in a format accepted by strtotime(). - * @param DateTimeZone $timezone Time zone of the time. - * @param user User object for context. + * @param \DateTimeZone $timezone Time zone of the time. + * @param user $user object for context. */ public function __construct($user, $time = 'now', \DateTimeZone $timezone = null) { @@ -120,7 +120,7 @@ class datetime extends \DateTime /** * Magic method to convert DateTime object to string * - * @return Formatted date time, according to the users default settings. + * @return string Formatted date time, according to the users default settings. */ public function __toString() { |