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 f7f2dcd commit 241659dCopy full SHA for 241659d
docs/documentation/digging-deeper/win32-model.md
@@ -121,10 +121,10 @@ argument that can be provided in a number of ways.
121
Win32Model::query();
122
123
// Finds the connection by its name.
124
-Win32Model::('named_connection');
+Win32Model::query('named_connection');
125
126
// Uses the connection as is.
127
-Win32Model::(Connection::simple('computer', 'user', 'password');
+Win32Model::query(Connection::simple('computer', 'user', 'password');
128
```
129
130
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