| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function build() |
||
| 13 | { |
||
| 14 | $defaults = wp_parse_args( $this->defaults(), [ |
||
| 15 | 'name' => $this->builder->args['text'], |
||
| 16 | ]); |
||
| 17 | $this->builder->args = wp_parse_args( $this->builder->args, $defaults ); |
||
| 18 | $this->builder->tag = 'input'; |
||
| 19 | return $this->builder->getOpeningTag(); |
||
| 20 | } |
||
| 35 |