Advertisement
Guest User

Untitled

a guest
May 19th, 2017
508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. /*
  3. * To change this template, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6.  
  7. /**
  8. * @todo documentation
  9. *
  10. * @author Maxim Tsepkov <max@cluster-studio.com>
  11. */
  12. class testTask extends sfBaseTask
  13. {
  14. public function configure()
  15. {
  16. $this->namespace = 'say';
  17. $this->name = 'hello';
  18. }
  19. public function execute($arguments = array(), $options = array())
  20. {
  21. echo 'Hello, World!';
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement