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:
parent
bc5307f7d5
commit
426d6f2b1f
2 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ final class AphrontIsolatedDatabaseConnection
|
|||
return $this->affectedRows;
|
||||
}
|
||||
|
||||
public function getTransactionKey() {
|
||||
protected function getTransactionKey() {
|
||||
return $this->transactionKey;
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue