mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-24 05:28:18 +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;
|
return $this->affectedRows;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTransactionKey() {
|
protected function getTransactionKey() {
|
||||||
return $this->transactionKey;
|
return $this->transactionKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,7 @@ final class AphrontMySQLDatabaseConnection extends AphrontDatabaseConnection {
|
||||||
return mysql_affected_rows($this->requireConnection());
|
return mysql_affected_rows($this->requireConnection());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTransactionKey() {
|
protected function getTransactionKey() {
|
||||||
return (int)$this->requireConnection();
|
return (int)$this->requireConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue