summaryrefslogtreecommitdiff
path: root/app/Report/ReportBaseElement.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-05-30 19:13:51 +0100
committerGreg Roach <fisharebest@gmail.com>2015-05-30 23:29:57 +0100
commitcbc1590a8c715aa2d88bd745610b899587bd9563 (patch)
tree8411c52737b981c7eff37ffcdd083902cb769141 /app/Report/ReportBaseElement.php
parentffd703ea1e658c7dcb5e5f1f9ef137a420f2d167 (diff)
downloadwebtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.tar.gz
webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.tar.bz2
webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.zip
Code style
Diffstat (limited to 'app/Report/ReportBaseElement.php')
-rw-r--r--app/Report/ReportBaseElement.php12
1 files changed, 3 insertions, 9 deletions
diff --git a/app/Report/ReportBaseElement.php b/app/Report/ReportBaseElement.php
index 1102257413..7a9fcf6d0f 100644
--- a/app/Report/ReportBaseElement.php
+++ b/app/Report/ReportBaseElement.php
@@ -29,8 +29,6 @@ class ReportBaseElement {
* Element renderer
*
* @param ReportHtml|ReportPdf $renderer
- *
- * @return void
*/
public function render($renderer) {
//-- to be implemented in inherited classes
@@ -57,7 +55,7 @@ class ReportBaseElement {
/**
* @param string $t
*
- * @return integer
+ * @return int
*/
public function addText($t) {
global $wt_report, $reportTitle, $reportDescription;
@@ -79,7 +77,7 @@ class ReportBaseElement {
}
/**
- * @return integer
+ * @return int
*/
public function addNewline() {
$this->text .= "\n";
@@ -98,7 +96,7 @@ class ReportBaseElement {
* @param $wrapwidth
* @param $cellwidth
*
- * @return integer
+ * @return int
*/
public function setWrapWidth($wrapwidth, $cellwidth) {
return 0;
@@ -106,8 +104,6 @@ class ReportBaseElement {
/**
* @param $renderer
- *
- * @return void
*/
public function renderFootnote($renderer) {
// To be implemented in inherited classes
@@ -115,8 +111,6 @@ class ReportBaseElement {
/**
* @param $text
- *
- * @return void
*/
public function setText($text) {
$this->text = $text;