1234567891011121314151617181920212223242526272829 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * sfComponents.
- *
- * @package symfony
- * @subpackage action
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfComponents.class.php 9044 2008-05-19 06:18:41Z Carl.Vondrick $
- */
- abstract class sfComponents extends sfComponent
- {
- /**
- * @see sfComponent
- */
- public function execute($request)
- {
- throw new sfInitializationException('sfComponents initialization failed.');
- }
- }
|