/framework/core/build/BuildProject.php
http://zoop.googlecode.com/ · PHP · 9 lines · 9 code · 0 blank · 0 comment · 0 complexity · ec0c391452093630f193f6af6d9877cc MD5 · raw file
- <?php
- abstract class BuildProject extends Object
- {
- public function build($target)
- {
- $method = "target$target";
- $this->$method();
- }
- }