summaryrefslogtreecommitdiff
path: root/app/Report/ReportPdfLine.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-12-25 21:44:26 +0000
committerGreg Roach <fisharebest@gmail.com>2016-12-25 21:46:23 +0000
commit7a6ee1ac7cd0821562d35b111a96b219b46d7899 (patch)
tree99faaab77f0eeff388c72e2d3aa1b70a519d8eb2 /app/Report/ReportPdfLine.php
parentc1343e2ddc990378c44729b8010d8918b623bffd (diff)
downloadwebtrees-7a6ee1ac7cd0821562d35b111a96b219b46d7899.tar.gz
webtrees-7a6ee1ac7cd0821562d35b111a96b219b46d7899.tar.bz2
webtrees-7a6ee1ac7cd0821562d35b111a96b219b46d7899.zip
Code style - single quotes
Diffstat (limited to 'app/Report/ReportPdfLine.php')
-rw-r--r--app/Report/ReportPdfLine.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Report/ReportPdfLine.php b/app/Report/ReportPdfLine.php
index b40839c5be..5c13641b53 100644
--- a/app/Report/ReportPdfLine.php
+++ b/app/Report/ReportPdfLine.php
@@ -25,16 +25,16 @@ class ReportPdfLine extends ReportBaseLine {
* @param ReportTcpdf $renderer
*/
public function render($renderer) {
- if ($this->x1 == ".") {
+ if ($this->x1 == '.') {
$this->x1 = $renderer->GetX();
}
- if ($this->y1 == ".") {
+ if ($this->y1 == '.') {
$this->y1 = $renderer->GetY();
}
- if ($this->x2 == ".") {
+ if ($this->x2 == '.') {
$this->x2 = $renderer->getMaxLineWidth();
}
- if ($this->y2 == ".") {
+ if ($this->y2 == '.') {
$this->y2 = $renderer->GetY();
}
if ($renderer->getRTL()) {