sfGeneratorBaseTask.class.php 584 B

12345678910111213141516171819202122
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * Base class for all symfony generator tasks.
  11. *
  12. * @package symfony
  13. * @subpackage task
  14. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  15. * @version SVN: $Id: sfGeneratorBaseTask.class.php 6931 2008-01-04 06:31:12Z fabien $
  16. */
  17. abstract class sfGeneratorBaseTask extends sfBaseTask
  18. {
  19. }