| 1 | <?php |
||
| 14 | class ViewHelperA extends Base /* implements ViewInterface */ { |
||
| 15 | private $sName; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var ModelA |
||
| 19 | */ |
||
| 20 | private $oModel; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var ViewA |
||
| 24 | */ |
||
| 25 | private $oView; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param ViewA $oView |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | 1 | public function setView(ViewA $oView) { |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @returns ViewA |
||
| 37 | */ |
||
| 38 | 1 | public function getView() { |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @param ModelA $oModel |
||
| 44 | * @return void |
||
| 45 | */ |
||
| 46 | 1 | public function setModel(ModelA $oModel) { |
|
| 49 | |||
| 50 | /** |
||
| 51 | * @returns ModelA |
||
| 52 | */ |
||
| 53 | 1 | public function getModel() { |
|
| 56 | } |
||
| 57 |