summaryrefslogtreecommitdiffstats
path: root/application/models/Client.php
diff options
context:
space:
mode:
authorSimon2011-01-28 09:48:04 +0100
committerSimon2011-01-28 09:48:04 +0100
commit24468f6a2244b07e7c56eb80523bf63341f486cd (patch)
tree545fa06c2728023f36b2eb5b4c834783f210b456 /application/models/Client.php
parentsettergetter für variablen - um nicht tausend sachen ändern zu müssen (diff)
downloadpbs2-24468f6a2244b07e7c56eb80523bf63341f486cd.tar.gz
pbs2-24468f6a2244b07e7c56eb80523bf63341f486cd.tar.xz
pbs2-24468f6a2244b07e7c56eb80523bf63341f486cd.zip
setter/getter geändert damit es Konvention setGrossbuchstabe() entspricht
Diffstat (limited to 'application/models/Client.php')
-rw-r--r--application/models/Client.php17
1 files changed, 6 insertions, 11 deletions
diff --git a/application/models/Client.php b/application/models/Client.php
index 5b0ebb0..0fb5f64 100644
--- a/application/models/Client.php
+++ b/application/models/Client.php
@@ -44,32 +44,27 @@ class Application_Model_Client
}
- public function get_clientID()
+ public function getClientID()
{
return $this->_clientID;
}
-
- public function set_clientID($_clientID)
+ public function setClientID($_clientID)
{
$this->_clientID = $_clientID;
}
-
- public function get_macadress()
+ public function getMacadress()
{
return $this->_macadress;
}
-
- public function set_macadress($_macadress)
+ public function setMacadress($_macadress)
{
$this->_macadress = $_macadress;
}
-
- public function get_hardwarehash()
+ public function getHardwarehash()
{
return $this->_hardwarehash;
}
-
- public function set_hardwarehash($_hardwarehash)
+ public function setHardwarehash($_hardwarehash)
{
$this->_hardwarehash = $_hardwarehash;
}