| @@ -44,10 +44,8 @@ | ||
| 44 | 44 | /** |
| 45 | 45 | * Set the option label |
| 46 | 46 | * |
| 47 | 47 | * @since 2.03.05 |
| 48 | - * | |
| 49 | - * @return void | |
| 50 | 48 | */ |
| 51 | 49 | private function set_option_label() { |
| 52 | 50 | if ( is_array( $this->option ) ) { |
| 53 | 51 | $this->option_label = ( isset( $this->option['label'] ) ? $this->option['label'] : reset( $this->option ) ); |
| @@ -59,10 +57,8 @@ | ||
| 59 | 57 | /** |
| 60 | 58 | * Set the saved value |
| 61 | 59 | * |
| 62 | 60 | * @since 2.03.05 |
| 63 | - * | |
| 64 | - * @return void | |
| 65 | 61 | */ |
| 66 | 62 | protected function set_saved_value() { |
| 67 | 63 | $this->saved_value = $this->option_label; |
| 68 | 64 | } |
| @@ -73,10 +69,8 @@ | ||
| 73 | 69 | * @since 2.03.05 |
| 74 | 70 | * |
| 75 | 71 | * @param string $selected_value |
| 76 | 72 | * @param int $truncate |
| 77 | - * | |
| 78 | - * @return void | |
| 79 | 73 | */ |
| 80 | 74 | public function print_single_option( $selected_value, $truncate ) { |
| 81 | 75 | if ( '' !== $this->saved_value ) { |
| 82 | 76 | echo '<option value="' . esc_attr( $this->saved_value ) . '"'; |