Skip to content

Commit

Permalink
added visibility definition to method
Browse files Browse the repository at this point in the history
  • Loading branch information
ifsnop committed Sep 10, 2015
1 parent 895bcfe commit 2f850d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/Ifsnop/Mysqldump/Mysqldump.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2f850d6

Please sign in to comment.