Skip to content

Commit

Permalink
Update query-builder.md (#220)
Browse files Browse the repository at this point in the history
Missing $this->
  • Loading branch information
A-g-e-s authored Oct 12, 2023
1 parent 4378dff commit 05ae6de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/query-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The API is designed to be convenient and yet safe and helpful. Therefore, every
To get query in QueryBuilder executed, pass the builder to `queryByQueryBuilder()` method on connection, you will receive a `Result` instance.

```php
$builder = $connection->createQueryBuilder();
$builder = $this->connection->createQueryBuilder();
// modify query builder
$result = $this->connection->queryByQueryBuilder($builder);
```
Expand Down

0 comments on commit 05ae6de

Please sign in to comment.