Changeset 129 for trunk/examples/TestInterfaces.php
- Timestamp:
- 11/17/07 18:01:44 (1 year ago)
- Files:
-
- trunk/examples/TestInterfaces.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/TestInterfaces.php
r119 r129 6 6 * @author Frank Kleine <frank.kleine@schlund.de> 7 7 */ 8 require_once '../XJConf/XJConf Loader.php';8 require_once '../XJConf/XJConf.php'; 9 9 use net::xjconf::DefinitionParser; 10 10 use net::xjconf::XmlParser; … … 18 18 class TestInterfaces 19 19 { 20 public static function main()21 {20 public static function main() 21 { 22 22 $tagParser = new DefinitionParser(); 23 23 $defs = $tagParser->parse(getcwd() . '/xml/defines-interfaces.xml'); … … 37 37 var_dump($foo); 38 38 var_dump($foo->getBar()); 39 }39 } 40 40 } 41 41 TestInterfaces::main();
