| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 12 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 33 | 	protected function set_choices() { | 
            ||
| 34 | |||
| 35 | 		if ( ! is_array( $this->choices ) ) { | 
            ||
| 36 | $this->choices = array();  | 
            ||
| 37 | }  | 
            ||
| 38 | |||
| 39 | $this->choices = wp_parse_args( $this->choices, array(  | 
            ||
| 40 | 'on' => esc_attr__( 'On', 'kirki' ),  | 
            ||
| 41 | 'off' => esc_attr__( 'Off', 'kirki' ),  | 
            ||
| 42 | 'round' => false,  | 
            ||
| 43 | ) );  | 
            ||
| 44 | }  | 
            ||
| 45 | }  | 
            ||
| 46 |