| @@ -82,9 +82,8 @@ | ||
| 82 | 82 | * |
| 83 | 83 | * @since 2.04 |
| 84 | 84 | * |
| 85 | 85 | * @param array $atts |
| 86 | - * @return void | |
| 87 | 86 | */ |
| 88 | 87 | private function init_style_settings( $atts ) { |
| 89 | 88 | $style_settings = array( |
| 90 | 89 | 'border_color' => 'dddddd', |
| @@ -114,9 +113,8 @@ | ||
| 114 | 113 | * |
| 115 | 114 | * @since 2.04 |
| 116 | 115 | * |
| 117 | 116 | * @param array $atts |
| 118 | - * @return void | |
| 119 | 117 | */ |
| 120 | 118 | private function init_use_inline_style( $atts ) { |
| 121 | 119 | if ( isset( $atts['inline_style'] ) && ! $atts['inline_style'] ) { |
| 122 | 120 | $this->use_inline_style = false; |
| @@ -128,9 +126,8 @@ | ||
| 128 | 126 | * |
| 129 | 127 | * @since 2.04 |
| 130 | 128 | * |
| 131 | 129 | * @param array $atts |
| 132 | - * @return void | |
| 133 | 130 | */ |
| 134 | 131 | private function init_direction( $atts ) { |
| 135 | 132 | if ( isset( $atts['direction'] ) && $atts['direction'] === 'rtl' ) { |
| 136 | 133 | $this->direction = 'rtl'; |
| @@ -140,9 +137,8 @@ | ||
| 140 | 137 | /** |
| 141 | 138 | * Set the table_style property |
| 142 | 139 | * |
| 143 | 140 | * @since 2.04 |
| 144 | - * @return void | |
| 145 | 141 | */ |
| 146 | 142 | private function init_table_style() { |
| 147 | 143 | if ( $this->use_inline_style === true ) { |
| 148 | 144 | |
| @@ -159,9 +155,8 @@ | ||
| 159 | 155 | /** |
| 160 | 156 | * Set the td_style property |
| 161 | 157 | * |
| 162 | 158 | * @since 2.04 |
| 163 | - * @return void | |
| 164 | 159 | */ |
| 165 | 160 | private function init_td_style() { |
| 166 | 161 | if ( $this->use_inline_style === true ) { |
| 167 | 162 | |
| @@ -242,10 +237,8 @@ | ||
| 242 | 237 | * Switch the odd property from true to false or false to true |
| 243 | 238 | * |
| 244 | 239 | * @since 2.04 |
| 245 | 240 | * @since 5.0.16 Changed scope from `private` to `protected`. |
| 246 | - * | |
| 247 | - * @return void | |
| 248 | 241 | */ |
| 249 | 242 | protected function switch_odd() { |
| 250 | 243 | if ( $this->type !== 'shortcode' ) { |
| 251 | 244 | $this->odd = ! $this->odd; |
| @@ -331,12 +324,9 @@ | ||
| 331 | 324 | /** |
| 332 | 325 | * Add classes to the tr. |
| 333 | 326 | * |
| 334 | 327 | * @since 5.4.2 |
| 335 | - * | |
| 336 | 328 | * @param bool $empty If the value in the row is blank. |
| 337 | - * | |
| 338 | - * @return string | |
| 339 | 329 | */ |
| 340 | 330 | protected function add_row_class( $empty = false ) { |
| 341 | 331 | $class = ''; |
| 342 | 332 | if ( $empty ) { |