diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-05-30 19:13:51 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-05-30 23:29:57 +0100 |
| commit | cbc1590a8c715aa2d88bd745610b899587bd9563 (patch) | |
| tree | 8411c52737b981c7eff37ffcdd083902cb769141 /app/Report/ReportBaseText.php | |
| parent | ffd703ea1e658c7dcb5e5f1f9ef137a420f2d167 (diff) | |
| download | webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.tar.gz webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.tar.bz2 webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.zip | |
Code style
Diffstat (limited to 'app/Report/ReportBaseText.php')
| -rw-r--r-- | app/Report/ReportBaseText.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/Report/ReportBaseText.php b/app/Report/ReportBaseText.php index 4f7bfa4214..ad1cb50c42 100644 --- a/app/Report/ReportBaseText.php +++ b/app/Report/ReportBaseText.php @@ -35,13 +35,13 @@ class ReportBaseText extends ReportBaseElement { /** * Remaining width of a cel * - * @var integer User unit (points) + * @var int User unit (points) */ public $wrapWidthRemaining; /** * Original width of a cell * - * @var integer User unit (points) + * @var int User unit (points) */ public $wrapWidthCell; @@ -52,10 +52,10 @@ class ReportBaseText extends ReportBaseElement { * @param string $color HTML color code */ public function __construct($style, $color) { - $this->text = ''; - $this->color = $color; + $this->text = ''; + $this->color = $color; $this->wrapWidthRemaining = 0; - $this->styleName = $style; + $this->styleName = $style; return 0; } |
