From 50f546aa3e891a5dae126aef4086d28ea7af8f30 Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Sun, 27 Sep 2015 10:45:31 +0300 Subject: [PATCH] Make lines short to pass phpcs in Language.php Bug: T102614 Change-Id: I14fd848398ce68bd646f36b196560f70352d5f49 --- languages/Language.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/languages/Language.php b/languages/Language.php index be97d83c21..50ed513734 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -2551,10 +2551,13 @@ class Language { * * @param MWTimestamp $time * @param MWTimestamp|null $relativeTo The base timestamp to compare to (defaults to now) - * @param User|null $user User the timestamp is being generated for (or null to use main context's user) + * @param User|null $user User the timestamp is being generated for + * (or null to use main context's user) * @return string Formatted timestamp */ - public function getHumanTimestamp( MWTimestamp $time, MWTimestamp $relativeTo = null, User $user = null ) { + public function getHumanTimestamp( + MWTimestamp $time, MWTimestamp $relativeTo = null, User $user = null + ) { if ( $relativeTo === null ) { $relativeTo = new MWTimestamp(); } @@ -2589,7 +2592,9 @@ class Language { * @return string Human timestamp * @since 1.26 */ - private function getHumanTimestampInternal( MWTimestamp $ts, MWTimestamp $relativeTo, User $user ) { + private function getHumanTimestampInternal( + MWTimestamp $ts, MWTimestamp $relativeTo, User $user + ) { $diff = $ts->diff( $relativeTo ); $diffDay = (bool)( (int)$ts->timestamp->format( 'w' ) - (int)$relativeTo->timestamp->format( 'w' ) ); -- 2.20.1