| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class LeftAndMainFormRequestHandler extends FormRequestHandler |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Extra form identifiers (e.g. ID, OtherID) |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | protected $extra = []; |
||
| 22 | |||
| 23 | public function __construct(Form $form, $extra = []) |
||
| 24 | { |
||
| 25 | parent::__construct($form); |
||
| 26 | $this->extra = $extra; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function Link($action = null) |
||
| 37 | } |
||
| 38 | } |
||
| 39 |