Security update for Core, with self-updated composer
[yaffs-website] / vendor / gabordemooij / redbean / RedBeanPHP / Util / Dump.php
diff --git a/vendor/gabordemooij/redbean/RedBeanPHP/Util/Dump.php b/vendor/gabordemooij/redbean/RedBeanPHP/Util/Dump.php
deleted file mode 100644 (file)
index de61664..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-<?php
-
-namespace RedBeanPHP\Util;
-
-use RedBeanPHP\OODB as OODB;
-use RedBeanPHP\OODBBean as OODBBean;
-
-/**
- * Dump helper
- *
- * This code was originally part of the facade, however it has
- * been decided to remove unique features to service classes like
- * this to make them available to developers not using the facade class.
- *
- * Dumps the contents of a bean in an array for
- * debugging purposes.
- * 
- * @file    RedBeanPHP/Util/Dump.php
- * @author  Gabor de Mooij and the RedBeanPHP Community
- * @license BSD/GPLv2
- *
- * @copyright
- * copyright (c) G.J.G.T. (Gabor) de Mooij and the RedBeanPHP Community
- * This source file is subject to the BSD/GPLv2 License that is bundled
- * with this source code in the file license.txt.
- */
-class Dump
-{
-       /**
-        * Simple but effective debug function.
-        * Given a one or more beans this method will
-        * return an array containing first part of the string
-        * representation of each item in the array.
-        *
-        * @param OODBBean|array $data either a bean or an array of beans
-        *
-        * @return array
-        */
-       public static function dump( $data )
-       {
-               $array = array();
-
-               if ( $data instanceof OODBBean ) {
-                       $str = strval( $data );
-                       if (strlen($str) > 35) {
-                               $beanStr = substr( $str, 0, 35 ).'... ';
-                       } else {
-                               $beanStr = $str;
-                       }
-                       return $beanStr;
-               }
-
-               if ( is_array( $data ) ) {
-                       foreach( $data as $key => $item ) {
-                               $array[$key] = self::dump( $item );
-                       }
-               }
-
-               return $array;
-       }
-}