Changeset 89 for trunk/examples/DynamicSetterClass.php
- Timestamp:
- 02/08/07 21:57:53 (2 years ago)
- Files:
-
- trunk/examples/DynamicSetterClass.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/DynamicSetterClass.php
r43 r89 7 7 $this->foo = $foo; 8 8 } 9 10 public function getFoo() 11 { 12 return $this->foo; 13 } 9 14 10 15 public function setBar($bar) { 11 16 $this->bar = $bar; 12 17 } 18 19 public function getBar() 20 { 21 return $this->bar; 22 } 13 23 } 14 24 ?>
