@@ -42,7 +42,7 @@ |
||
42 | 42 | * @since 3.8.9 |
43 | 43 | * @return string |
44 | 44 | */ |
45 | - static public function getDetails( $mValue, $bEscape=true ) { |
|
45 | + static public function getDetails( $mValue, $bEscape=true ) { |
|
46 | 46 | $_sValueWithDetails = self::_getArrayRepresentationSanitized( |
47 | 47 | self::_getLegibleDetails( $mValue ) |
48 | 48 | ); |
@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | * @since 3.8.9 |
23 | 23 | * @return string |
24 | 24 | */ |
25 | - static protected function _getLegibleDetails( $mValue ) { |
|
26 | - if ( is_array( $mValue ) ) { |
|
25 | + static protected function _getLegibleDetails( $mValue ) { |
|
26 | + if ( is_array( $mValue ) ) { |
|
27 | 27 | return '(array, length: ' . count( $mValue ).') ' |
28 | 28 | . print_r( self::_getLegibleArray( $mValue ) , true ); |
29 | 29 | } |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | * @return mixed A modified value. |
263 | 263 | * @since 3.8.9 |
264 | 264 | */ |
265 | - static private function _getArrayMappedNested( $mItem ) { |
|
265 | + static private function _getArrayMappedNested( $mItem ) { |
|
266 | 266 | return is_array( $mItem ) |
267 | 267 | ? array_map( array( __CLASS__, '_getArrayMappedNested' ), $mItem ) |
268 | 268 | : call_user_func( self::$_oCurrentCallableForArrayMapRecursive, $mItem ); |