| 1 | <?php |
||
| 10 | class HtmlFormFields extends HtmlSemCollection { |
||
| 11 | |||
| 12 | use FieldsTrait; |
||
| 13 | protected $_equalWidth; |
||
| 14 | |||
| 15 | public function __construct($identifier, $fields=array(),$equalWidth=true) { |
||
| 20 | |||
| 21 | public function compile(JsUtils $js=NULL,View $view=NULL){ |
||
| 29 | |||
| 30 | public function setWidth($index,$width){ |
||
| 34 | } |
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different sub-classes of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the parent class: