Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 306 Bytes

SOLUTIONS.md

File metadata and controls

14 lines (13 loc) · 306 Bytes

Problem: Inheritence after Element

Solution 1: Each element defines the tag as constructor attribute

public function __construct (string $tag = 'a') {
    parent::__construct($tag);
}

Solution 2:

public function __construct (string $tag = 'a') {
    parent::__construct($this->tag);
}