sfComponents.class.php 708 B

12345678910111213141516171819202122232425262728
  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. * sfComponents.
  11. *
  12. * @package symfony
  13. * @subpackage action
  14. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  15. * @version SVN: $Id: sfComponents.class.php 9044 2008-05-19 06:18:41Z Carl.Vondrick $
  16. */
  17. abstract class sfComponents extends sfComponent
  18. {
  19. /**
  20. * @see sfComponent
  21. */
  22. public function execute($request)
  23. {
  24. throw new sfInitializationException('sfComponents initialization failed.');
  25. }
  26. }