Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / infrastructure / storage / xsprintf / AphrontDatabaseTableRef.php
blob4a4cf986c49f293cf3393664c77567ed112c522a
1 <?php
3 final class AphrontDatabaseTableRef
4 extends Phobject
5 implements AphrontDatabaseTableRefInterface {
7 private $database;
8 private $table;
10 public function __construct($database, $table) {
11 $this->database = $database;
12 $this->table = $table;
15 public function getAphrontRefDatabaseName() {
16 return $this->database;
19 public function getAphrontRefTableName() {
20 return $this->table;