Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Klazz {
- private $_attribute1;
- private $_attribute2;
- private $_attribute3;
- public function getAttribute1(){
- return $this->_attribute1;
- }
- public function setAttribute2($value){
- $this->_attribute2 = $value;
- }
- public function getAttribute3(){
- return $this->_attribute3;
- }
- public function setAttribute3($value){
- $this->_attribute3 = $value;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement