Completed
Branch dev (acf3d0)
by Michael
05:39
created
development/factory/_common/utility/AdminPageFramework_Debug.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      * @since       3.8.9
54 54
      * @return      string
55 55
      */
56
-    static public function getDetails( $mValue, $bEscape=true ) {    
56
+    static public function getDetails( $mValue, $bEscape=true ) {
57 57
         $_sValueWithDetails = self::_getArrayRepresentationSanitized(
58 58
             self::_getLegible( $mValue )
59 59
         );
@@ -323,8 +323,8 @@  discard block
 block discarded – undo
323 323
          * @since       3.8.9
324 324
          * @return      string
325 325
          */
326
-        static private function _getLegible( $mValue ) {                
327
-            if ( is_array( $mValue ) ) {            
326
+        static private function _getLegible( $mValue ) {
327
+            if ( is_array( $mValue ) ) {
328 328
                 return '(array, length: ' . count( $mValue ).') ' 
329 329
                     . print_r( self::_getLegibleArray( $mValue ) , true );
330 330
             }
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
502 502
              * @return      mixed       A modified value.
503 503
              * @since       3.8.9
504 504
              */
505
-            static private function _getArrayMappedNested( $mItem ) {            
505
+            static private function _getArrayMappedNested( $mItem ) {
506 506
                 return is_array( $mItem ) 
507 507
                     ? array_map( array( __CLASS__, '_getArrayMappedNested' ), $mItem ) 
508 508
                     : call_user_func( self::$_oCurrentCallableForArrayMapRecursive, $mItem );            
Please login to merge, or discard this patch.