| 1 | <?php |
||
| 18 | class ZendView extends View implements RendererInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var View |
||
| 22 | */ |
||
| 23 | protected $view; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Class constructor |
||
| 27 | * |
||
| 28 | * @param View $view |
||
| 29 | */ |
||
| 30 | 2 | public function __construct(View $view) |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @param ModelInterface $model |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | 1 | public function render(ModelInterface $model) |
|
| 47 | } |
||
| 48 |