| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class Help extends Component |
||
| 14 | { |
||
| 15 | public const CLASS_HELP_BLOCK = 'help-block'; |
||
| 16 | |||
| 17 | protected const DEFAULT_TAG = Html5::TAG_DIV; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Help constructor. |
||
| 21 | * |
||
| 22 | * @param INode[]|INode|string|null $content |
||
| 23 | * @param array $intents |
||
| 24 | * @param Attributes|null $attributes |
||
| 25 | * @param string|null $tag |
||
| 26 | */ |
||
| 27 | public function __construct( |
||
| 39 |