Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | function __construct( $args = array() ) { |
||
41 | |||
42 | $args = wp_parse_args( $args, array( |
||
1 ignored issue
–
show
|
|||
43 | 'address' => '', |
||
44 | 'label' => null, |
||
45 | 'title' => '', |
||
46 | ) ); |
||
47 | |||
48 | parent::__construct( $args ); |
||
49 | |||
50 | } |
||
51 | |||
101 |