Skip to content

Commit c01ae83

Browse files
committed
fix
1 parent ac93ff9 commit c01ae83

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

user_guide_src/source/database/query_builder.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ The first parameter is an associative array of values.
910910
.. note:: All values are escaped automatically producing safer queries.
911911

912912
$builder->onConstraint()
913-
-----------------------
913+
------------------------
914914

915915
Allows manually setting constraint to be used for upsert. This does
916916
not work with MySQL because MySQL checks all constraints by default.
@@ -920,7 +920,7 @@ not work with MySQL because MySQL checks all constraints by default.
920920
This method accepts a string or an array of columns.
921921

922922
$builder->updateFields()
923-
-----------------------
923+
------------------------
924924
Allows manually setting the fields to be updated when performing upserts.
925925

926926
.. literalinclude:: query_builder/110.php

user_guide_src/source/database/query_builder/108.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
'country' => 'Iran',
99
],
1010
[
11-
'id' => NULL,
11+
'id' => null,
1212
'email' => '[email protected]',
1313
'name' => 'Pedro',
1414
'country' => 'El Salvador',

0 commit comments

Comments
 (0)