summaryrefslogtreecommitdiffstats
path: root/application/models/Client.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/Client.php')
-rw-r--r--application/models/Client.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/application/models/Client.php b/application/models/Client.php
index 9995bfe..9216b20 100644
--- a/application/models/Client.php
+++ b/application/models/Client.php
@@ -51,6 +51,7 @@ class Application_Model_Client
public function setID($_clientID)
{
$this->_clientID = $_clientID;
+ return $this;
}
public function getMacadress()
{
@@ -59,6 +60,7 @@ class Application_Model_Client
public function setMacadress($_macadress)
{
$this->_macadress = $_macadress;
+ return $this;
}
public function getHardwarehash()
{
@@ -67,6 +69,7 @@ class Application_Model_Client
public function setHardwarehash($_hardwarehash)
{
$this->_hardwarehash = $_hardwarehash;
+ return $this;
}
}