From 07b6fa750ba1dc1b7d8c22959b3528f4c9b9ab85 Mon Sep 17 00:00:00 2001 From: VirtualTam Date: Thu, 9 Jul 2015 21:07:37 +0200 Subject: LinkDB: prefix private members with an underscore Relates to #95, #218 Signed-off-by: VirtualTam --- tests/utils/ReferenceLinkDB.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'tests/utils/ReferenceLinkDB.php') diff --git a/tests/utils/ReferenceLinkDB.php b/tests/utils/ReferenceLinkDB.php index 59ba671f..0b225720 100644 --- a/tests/utils/ReferenceLinkDB.php +++ b/tests/utils/ReferenceLinkDB.php @@ -4,9 +4,9 @@ */ class ReferenceLinkDB { - private $links = array(); - private $publicCount = 0; - private $privateCount = 0; + private $_links = array(); + private $_publicCount = 0; + private $_privateCount = 0; /** * Populates the test DB with reference data @@ -81,13 +81,13 @@ class ReferenceLinkDB 'linkdate' => $date, 'tags' => $tags, ); - $this->links[$date] = $link; + $this->_links[$date] = $link; if ($private) { - $this->privateCount++; + $this->_privateCount++; return; } - $this->publicCount++; + $this->_publicCount++; } /** @@ -97,7 +97,7 @@ class ReferenceLinkDB { file_put_contents( $filename, - 'links))).' */ ?>' + '_links))).' */ ?>' ); } @@ -106,7 +106,7 @@ class ReferenceLinkDB */ public function countLinks() { - return $this->publicCount + $this->privateCount; + return $this->_publicCount + $this->_privateCount; } /** @@ -114,7 +114,7 @@ class ReferenceLinkDB */ public function countPublicLinks() { - return $this->publicCount; + return $this->_publicCount; } /** @@ -122,7 +122,7 @@ class ReferenceLinkDB */ public function countPrivateLinks() { - return $this->privateCount; + return $this->_privateCount; } } ?> -- cgit v1.2.3