Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
/*
4
 * This file is part of the symfony package.
5
 * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
 
11
/**
12
 * sfComponents.
13
 *
14
 * @package    symfony
15
 * @subpackage action
16
 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
17
 * @version    SVN: $Id: sfComponents.class.php 20780 2009-08-04 20:30:32Z Kris.Wallsmith $
18
 */
19
abstract class sfComponents extends sfComponent
20
{
21
  /**
22
   * @throws sfInitializationException
23
   *
24
   * @see sfComponent
25
   */
26
  public function execute($request)
27
  {
28
    throw new sfInitializationException('sfComponents initialization failed.');
29
  }
30
}