| 1 | <?php |
||
| 10 | class Template extends View |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param string|array $template |
||
| 14 | * @param int $sharedMaxAge |
||
| 15 | * @param array $parameters |
||
| 16 | * @param int $statusCode |
||
| 17 | * |
||
| 18 | * @return static |
||
| 19 | */ |
||
| 20 | 1 | public static function createCached($template, $sharedMaxAge, $parameters = array(), $statusCode = self::DEFAULT_STATUS_CODE) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @param string|array $template |
||
| 27 | * @param mixed $parameters |
||
| 28 | * @param int $statusCode |
||
| 29 | * @param array $cache |
||
| 30 | * @param array $headers |
||
| 31 | */ |
||
| 32 | 5 | public function __construct( |
|
| 41 | } |
||
| 42 |