|
Revision 20780, 0.7 kB
(checked in by Kris.Wallsmith, 4 years ago)
|
[1.3] removed unnecessary changes to function signatures (refs #6867)
|
- Property svn:mime-type set to
text/x-php
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 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 |
} |
|---|
| 31 |
|
|---|