1. sfComponents.class.php
  2. /** * sfComponents. * * @package symfony * @subpackage action * @author Fabien Potencier * @version SVN: $Id: sfComponents.class.php 20780 2009-08-04 20:30:32Z Kris.Wallsmith $ */
  3. abstract class sfComponents extends sfComponent
  4. {
  5. /**
  6. * @throws sfInitializationException
  7. *
  8. * @see sfComponent
  9. */
  10. public function execute($request)
  11. {
  12. throw new sfInitializationException('sfComponents initialization failed.');
  13. }
  14. }

Debug toolbar