From 2f850d6c3ea6d55ca2cb7b37bb568264264f728e Mon Sep 17 00:00:00 2001 From: Diego Torres Date: Thu, 10 Sep 2015 19:58:38 +0000 Subject: [PATCH] added visibility definition to method --- README.md | 1 + src/Ifsnop/Mysqldump/Mysqldump.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index eadfcd9a..75cccc95 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Out of the box, MySQLDump-PHP supports backing up table structures, the data its MySQLDump-PHP is the only library that supports: * output binary blobs as hex. * resolves view dependencies (using Stand-In tables). +* output compared against original mysqldump. Linked to travis-ci testing system. ## Important diff --git a/src/Ifsnop/Mysqldump/Mysqldump.php b/src/Ifsnop/Mysqldump/Mysqldump.php index ac6e0f86..c68badd2 100644 --- a/src/Ifsnop/Mysqldump/Mysqldump.php +++ b/src/Ifsnop/Mysqldump/Mysqldump.php @@ -546,7 +546,7 @@ private function getTableStructure($tableName) * @return array type column types detailed */ - function getTableColumnTypes($tableName) { + private function getTableColumnTypes($tableName) { $columnTypes = array(); $columns = $this->dbHandler->query( $this->typeAdapter->show_columns($tableName)