Skip to content

Commit 4c59a06

Browse files
committed
Inspections
1 parent e6b3cf5 commit 4c59a06

File tree

3 files changed

+1
-17
lines changed

3 files changed

+1
-17
lines changed

classes/AdminFactoryInterface.php

Lines changed: 0 additions & 14 deletions
This file was deleted.

classes/Settings/Column/Comment.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,12 @@ public function get_dependent_settings() {
4444
new Settings\Column\CommentLink( $this->column ),
4545
];
4646

47-
break;
4847
case self::PROPERTY_COMMENT :
4948
return [
5049
new Settings\Column\StringLimit( $this->column ),
5150
new Settings\Column\CommentLink( $this->column ),
5251
];
5352

54-
break;
5553
default :
5654
return [ new Settings\Column\CommentLink( $this->column ) ];
5755
}

classes/Settings/Column/NumberFormat.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public function format( $value, $original_value ) {
185185
switch ( $this->get_number_format() ) {
186186
case 'formatted' :
187187
return number_format( $value, (int) $this->get_number_decimals(), $this->get_number_decimal_point(), $this->get_number_thousands_separator() );
188-
break;
188+
189189
default:
190190
return $value;
191191
}

0 commit comments

Comments
 (0)