Completed
Branch dev (7f54de)
by Michael
05:04
created
development/factory/_common/utility/debug/AdminPageFramework_Debug.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
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
         );
Please login to merge, or discard this patch.
development/factory/_common/utility/debug/AdminPageFramework_Debug_Base.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 );            
Please login to merge, or discard this patch.