1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-08 22:01:03 +01:00

Make getTransactionKey() protected

Test Plan: Search for `getTransactionKey`.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran

Differential Revision: https://secure.phabricator.com/D2115
This commit is contained in:
vrana 2012-04-05 18:42:01 -07:00
parent bc5307f7d5
commit 426d6f2b1f
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ final class AphrontIsolatedDatabaseConnection
return $this->affectedRows;
}
public function getTransactionKey() {
protected function getTransactionKey() {
return $this->transactionKey;
}

View file

@ -192,7 +192,7 @@ final class AphrontMySQLDatabaseConnection extends AphrontDatabaseConnection {
return mysql_affected_rows($this->requireConnection());
}
public function getTransactionKey() {
protected function getTransactionKey() {
return (int)$this->requireConnection();
}