Skip to content

Commit 241659d

Browse files
committed
Update docs
1 parent f7f2dcd commit 241659d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/documentation/digging-deeper/win32-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ argument that can be provided in a number of ways.
121121
Win32Model::query();
122122

123123
// Finds the connection by its name.
124-
Win32Model::('named_connection');
124+
Win32Model::query('named_connection');
125125

126126
// Uses the connection as is.
127-
Win32Model::(Connection::simple('computer', 'user', 'password');
127+
Win32Model::query(Connection::simple('computer', 'user', 'password');
128128
```
129129

130130
If you pass a `Connection` instance it will not be stored in the `Config` container. This can be useful if you have a

0 commit comments

Comments
 (0)