Show
Ignore:
Timestamp:
02/08/07 21:57:53 (2 years ago)
Author:
mikey
Message:

added integration tests using the existing examples

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/examples/DynamicSetterClass.php

    r43 r89  
    77        $this->foo = $foo; 
    88    } 
     9     
     10    public function getFoo() 
     11    { 
     12        return $this->foo; 
     13    } 
    914 
    1015    public function setBar($bar) { 
    1116        $this->bar = $bar; 
    1217    } 
     18     
     19    public function getBar() 
     20    { 
     21        return $this->bar; 
     22    } 
    1323} 
    1424?>