Skip to content

Commit fadd95b

Browse files
authored
Update README.md
1 parent dd07734 commit fadd95b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ $factory = new TableGatewayFactory($adapter);
1212

1313
### Getting a TableGateway
1414

15-
Since you have provided the adapter now you can directly create the TableGateway using a string or a TableIdentifier object as identifier, like in the example below.
15+
Since you have provided the adapter now you can directly create the TableGateway using just the table name or also a schema name.
16+
```php
17+
$users = $factory->create('users');
18+
$users = $factory->create('users', 'myAuthSchema');
19+
```

0 commit comments

Comments
 (0)