Skip to content

Commit 2f850d6

Browse files
committed
added visibility definition to method
1 parent 895bcfe commit 2f850d6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Out of the box, MySQLDump-PHP supports backing up table structures, the data its
2222
MySQLDump-PHP is the only library that supports:
2323
* output binary blobs as hex.
2424
* resolves view dependencies (using Stand-In tables).
25+
* output compared against original mysqldump. Linked to travis-ci testing system.
2526

2627
## Important
2728

src/Ifsnop/Mysqldump/Mysqldump.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ private function getTableStructure($tableName)
546546
* @return array type column types detailed
547547
*/
548548

549-
function getTableColumnTypes($tableName) {
549+
private function getTableColumnTypes($tableName) {
550550
$columnTypes = array();
551551
$columns = $this->dbHandler->query(
552552
$this->typeAdapter->show_columns($tableName)

0 commit comments

Comments
 (0)