/framework/core/build/BuildProject.php

http://zoop.googlecode.com/ · PHP · 9 lines · 9 code · 0 blank · 0 comment · 0 complexity · ec0c391452093630f193f6af6d9877cc MD5 · raw file

  1. <?php
  2. abstract class BuildProject extends Object
  3. {
  4. public function build($target)
  5. {
  6. $method = "target$target";
  7. $this->$method();
  8. }
  9. }