We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 549ce87 commit 49a1cc7Copy full SHA for 49a1cc7
src/Connection.php
@@ -61,6 +61,15 @@ public function createUnitOfWork(){
61
return new UnitOfWork($this);
62
}
63
64
+ /**
65
+ * @param $table
66
+ * @param null $alias
67
+ * @return Gateway
68
+ */
69
+ public function createGateway($table, $alias = null){
70
+ return new Gateway($this, $table, $alias);
71
+ }
72
+
73
/**
74
* @return MapperLocator
75
*/
0 commit comments