Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <?php
  2.  
  3. class AppCopySchemaToPluginTask extends sfTask
  4. {
  5.   /**
  6.    * @see sfTask
  7.    */
  8.   protected function configure()
  9.   {
  10.     $this->aliases = array();
  11.     $this->namespace = 'propel';
  12.     $this->name = 'copy-schema-to-plugin';
  13.     $this->briefDescription = 'Copy schema to a given plugin';
  14.  
  15.     $this->addArgument('plugin_name', sfCommandArgument::REQUIRED, $help);
  16.    
  17.   }
  18.  
  19.   /**
  20.    * @see sfTask
  21.    */
  22.   protected function execute($arguments = array(), $options = array())
  23.   {
  24.  
  25.   }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement