You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/anonymization/internals.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,14 +8,14 @@ Each anonymizer adds its own `SET` statements to the query, and a few `JOIN` cla
8
8
9
9
## PHP query builder
10
10
11
-
Generating this kind of queries is quiet complexe and mostly impossible without a complete
11
+
Generating this kind of queries is quite complex and mostly impossible without a complete
12
12
and robust SQL query builder.
13
13
14
14
Our first thought was to use the [DBAL query builder](https://www.doctrine-project.org/projects/doctrine-dbal/en/4.0/reference/query-builder.html#sql-query-builder).
15
15
But, while it is very robust, it lacks many features. Features such as
16
16
update with join, which are essential for our use case.
17
17
18
-
Instead, we decided to re-use one of our tool: the [makinacorpus/query-builder-bundle](https://github.com/makinacorpus/query-builder-bundle) package.
18
+
Instead, we decided to re-use one of our tool: [makinacorpus/php-query-builder](https://github.com/makinacorpus/query-builder-bundle).
19
19
20
20
This query builder lets you write SQL queries using a concise and easy to read fluent PHP API
21
21
and [implements a lot of features](https://php-query-builder.readthedocs.io/en/stable/introduction/features.html).
0 commit comments