From d9387842ac7c41d4c92ccf7d797fed214ed38de8 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Fri, 17 Nov 2006 19:37:57 +0000 Subject: adjust some comments to work with phpdocumentor. :) git-svn-id: file:///svn/phpbb/trunk@6595 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/diff/diff.php | 11 +++-------- phpBB/includes/diff/engine.php | 6 ++---- phpBB/includes/diff/renderer.php | 8 +++----- 3 files changed, 8 insertions(+), 17 deletions(-) (limited to 'phpBB/includes/diff') diff --git a/phpBB/includes/diff/diff.php b/phpBB/includes/diff/diff.php index fd2d557a19..ca8d16fd3e 100644 --- a/phpBB/includes/diff/diff.php +++ b/phpBB/includes/diff/diff.php @@ -23,17 +23,12 @@ include_once($phpbb_root_path . 'includes/diff/renderer.' . $phpEx); * Code from pear.php.net, Text_Diff-0.2.1 (beta) package * http://pear.php.net/package/Text_Diff/ * -* Modified by Acyd Burn to meet our coding standards +* Modified by phpBB Group to meet our coding standards * and being able to integrate into phpBB -*/ - -/** +* * General API for generating and formatting diffs - the differences between * two sequences of strings. * -* The PHP diff code used in this package was originally written by Geoffrey -* T. Dairiki and is used with his permission. -* * @package phpBB3 * @author Geoffrey T. Dairiki */ @@ -182,7 +177,7 @@ class diff /** * Removes trailing newlines from a line of text. This is meant to be used with array_walk(). * - * @param string $line The line to trim. + * @param string &$line The line to trim. * @param integer $key The index of the line in the array. Not used. */ function trim_newlines(&$line, $key) diff --git a/phpBB/includes/diff/engine.php b/phpBB/includes/diff/engine.php index c230d865cd..5fcb317dd5 100644 --- a/phpBB/includes/diff/engine.php +++ b/phpBB/includes/diff/engine.php @@ -19,11 +19,9 @@ if (!defined('IN_PHPBB')) * Code from pear.php.net, Text_Diff-0.2.1 (beta) package * http://pear.php.net/package/Text_Diff/ * -* Modified by Acyd Burn to meet our coding standards +* Modified by phpBB Group to meet our coding standards * and being able to integrate into phpBB -*/ - -/** +* * Class used internally by Diff to actually compute the diffs. This class is * implemented using native PHP code. * diff --git a/phpBB/includes/diff/renderer.php b/phpBB/includes/diff/renderer.php index 408addb858..984fd65708 100644 --- a/phpBB/includes/diff/renderer.php +++ b/phpBB/includes/diff/renderer.php @@ -19,11 +19,9 @@ if (!defined('IN_PHPBB')) * Code from pear.php.net, Text_Diff-0.2.1 (beta) package * http://pear.php.net/package/Text_Diff/ * -* Modified by Acyd Burn to meet our coding standards +* Modified by phpBB Group to meet our coding standards * and being able to integrate into phpBB -*/ - -/** +* * A class to render Diffs in different formats. * * This class renders the diff in classic diff format. It is intended that @@ -86,7 +84,7 @@ class diff_renderer /** * Renders a diff. * - * @param diff $diff A diff object. + * @param diff &$diff A diff object. * * @return string The formatted output. */ -- cgit v1.2.1