| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class Button extends BaseButton |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string | null |
||
| 26 | */ |
||
| 27 | public $link; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string | null |
||
| 31 | */ |
||
| 32 | public $buttonType = 'default'; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var string | null |
||
| 36 | */ |
||
| 37 | public $iconClass; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @inheritdoc |
||
| 41 | */ |
||
| 42 | public $encodeLabel = false; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @inheritdoc |
||
| 46 | */ |
||
| 47 | public function init() |
||
| 64 |