summaryrefslogtreecommitdiffstats
path: root/3rdparty/MDB2/Schema/Validate.php
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-06-16 09:35:53 +0200
committerGeorg Ehrke <dev@georgswebsite.de>2012-06-16 09:35:53 +0200
commita6531d0311d6401562827ed12da6cdc8560b70f7 (patch)
treef188258612a15c28954d0873583b59dc199c5c13 /3rdparty/MDB2/Schema/Validate.php
parentfbd45a939fc52bf2e2865a35122b8abbb009b2b4 (diff)
parentbf2062b09d6c3a3d1c8b94b3612b6bb940aa5b79 (diff)
downloadnextcloud-server-a6531d0311d6401562827ed12da6cdc8560b70f7.tar.gz
nextcloud-server-a6531d0311d6401562827ed12da6cdc8560b70f7.zip
Merge branch 'master' into calendar_repeat
Diffstat (limited to '3rdparty/MDB2/Schema/Validate.php')
-rw-r--r--3rdparty/MDB2/Schema/Validate.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/3rdparty/MDB2/Schema/Validate.php b/3rdparty/MDB2/Schema/Validate.php
index 4cff175576f..4a8e0d27bac 100644
--- a/3rdparty/MDB2/Schema/Validate.php
+++ b/3rdparty/MDB2/Schema/Validate.php
@@ -108,28 +108,6 @@ class MDB2_Schema_Validate
$this->max_identifiers_length = $max_identifiers_length;
}
- /**
- * PHP 4 compatible constructor
- *
- * @param bool $fail_on_invalid_names array with reserved words per RDBMS
- * @param array $valid_types information of all valid fields
- * types
- * @param bool $force_defaults if true sets a default value to
- * field when not explicit
- * @param int $max_identifiers_length maximum allowed size for entities
- * name
- *
- * @return void
- *
- * @access public
- * @static
- */
- function MDB2_Schema_Validate($fail_on_invalid_names = true, $valid_types = array(),
- $force_defaults = true, $max_identifiers_length = null
- ) {
- $this->__construct($fail_on_invalid_names, $valid_types, $force_defaults);
- }
-
// }}}
// {{{ raiseError()