Skip to content

Commit 2808e78

Browse files
committed
Update methods description
1 parent 0f45bd8 commit 2808e78

1 file changed

Lines changed: 21 additions & 21 deletions

File tree

src/Manipulation/Traits/Join.php

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected function hasFrom(string $clause = null) : bool
8383
}
8484

8585
/**
86-
* Sets the JOIN clause as "$type JOIN $table $clause $conditional".
86+
* Adds a JOIN clause with "$type JOIN $table $clause $conditional".
8787
*
8888
* @param Closure|string $table Table factor
8989
* @param string $type JOIN type. One of: `CROSS`, `INNER`, `LEFT`, `LEFT OUTER`,
@@ -106,7 +106,7 @@ public function join(
106106
}
107107

108108
/**
109-
* Sets the JOIN clause as "JOIN $table ON $conditional".
109+
* Adds a JOIN clause with "JOIN $table ON $conditional".
110110
*
111111
* @param Closure|string $table Table factor
112112
* @param Closure $conditional Conditional expression
@@ -119,7 +119,7 @@ public function joinOn(Closure | string $table, Closure $conditional) : static
119119
}
120120

121121
/**
122-
* Sets the JOIN clause as "JOIN $table USING ...$columns".
122+
* Adds a JOIN clause with "JOIN $table USING ...$columns".
123123
*
124124
* @param Closure|string $table Table factor
125125
* @param Closure|string ...$columns Columns list
@@ -132,7 +132,7 @@ public function joinUsing(Closure | string $table, Closure | string ...$columns)
132132
}
133133

134134
/**
135-
* Sets the JOIN clause as "INNER JOIN $table ON $conditional".
135+
* Adds a JOIN clause with "INNER JOIN $table ON $conditional".
136136
*
137137
* @param Closure|string $table Table factor
138138
* @param Closure $conditional Conditional expression
@@ -145,7 +145,7 @@ public function innerJoinOn(Closure | string $table, Closure $conditional) : sta
145145
}
146146

147147
/**
148-
* Sets the JOIN clause as "INNER JOIN $table USING ...$columns".
148+
* Adds a JOIN clause with "INNER JOIN $table USING ...$columns".
149149
*
150150
* @param Closure|string $table Table factor
151151
* @param Closure|string ...$columns Columns list
@@ -158,7 +158,7 @@ public function innerJoinUsing(Closure | string $table, Closure | string ...$col
158158
}
159159

160160
/**
161-
* Sets the JOIN clause as "CROSS JOIN $table".
161+
* Adds a JOIN clause with "CROSS JOIN $table".
162162
*
163163
* @param Closure|string $table Table factor
164164
*
@@ -170,7 +170,7 @@ public function crossJoin(Closure | string $table) : static
170170
}
171171

172172
/**
173-
* Sets the JOIN clause as "CROSS JOIN $table ON $conditional".
173+
* Adds a JOIN clause with "CROSS JOIN $table ON $conditional".
174174
*
175175
* @param Closure|string $table Table factor
176176
* @param Closure $conditional Conditional expression
@@ -183,7 +183,7 @@ public function crossJoinOn(Closure | string $table, Closure $conditional) : sta
183183
}
184184

185185
/**
186-
* Sets the JOIN clause as "CROSS JOIN $table USING ...$columns".
186+
* Adds a JOIN clause with "CROSS JOIN $table USING ...$columns".
187187
*
188188
* @param Closure|string $table Table factor
189189
* @param Closure|string ...$columns Columns list
@@ -196,7 +196,7 @@ public function crossJoinUsing(Closure | string $table, Closure | string ...$col
196196
}
197197

198198
/**
199-
* Sets the JOIN clause as "LEFT JOIN $table ON $conditional".
199+
* Adds a JOIN clause with "LEFT JOIN $table ON $conditional".
200200
*
201201
* @param Closure|string $table Table factor
202202
* @param Closure $conditional Conditional expression
@@ -209,7 +209,7 @@ public function leftJoinOn(Closure | string $table, Closure $conditional) : stat
209209
}
210210

211211
/**
212-
* Sets the JOIN clause as "LEFT JOIN $table USING ...$columns".
212+
* Adds a JOIN clause with "LEFT JOIN $table USING ...$columns".
213213
*
214214
* @param Closure|string $table Table factor
215215
* @param Closure|string ...$columns Columns list
@@ -222,7 +222,7 @@ public function leftJoinUsing(Closure | string $table, Closure | string ...$colu
222222
}
223223

224224
/**
225-
* Sets the JOIN clause as "LEFT OUTER JOIN $table ON $conditional".
225+
* Adds a JOIN clause with "LEFT OUTER JOIN $table ON $conditional".
226226
*
227227
* @param Closure|string $table Table factor
228228
* @param Closure $conditional Conditional expression
@@ -235,7 +235,7 @@ public function leftOuterJoinOn(Closure | string $table, Closure $conditional) :
235235
}
236236

237237
/**
238-
* Sets the JOIN clause as "LEFT OUTER JOIN $table USING ...$columns".
238+
* Adds a JOIN clause with "LEFT OUTER JOIN $table USING ...$columns".
239239
*
240240
* @param Closure|string $table Table factor
241241
* @param Closure|string ...$columns Columns list
@@ -248,7 +248,7 @@ public function leftOuterJoinUsing(Closure | string $table, Closure | string ...
248248
}
249249

250250
/**
251-
* Sets the JOIN clause as "RIGHT JOIN $table ON $conditional".
251+
* Adds a JOIN clause with "RIGHT JOIN $table ON $conditional".
252252
*
253253
* @param Closure|string $table Table factor
254254
* @param Closure $conditional Conditional expression
@@ -261,7 +261,7 @@ public function rightJoinOn(Closure | string $table, Closure $conditional) : sta
261261
}
262262

263263
/**
264-
* Sets the JOIN clause as "RIGHT JOIN $table USING ...$columns".
264+
* Adds a JOIN clause with "RIGHT JOIN $table USING ...$columns".
265265
*
266266
* @param Closure|string $table Table factor
267267
* @param Closure|string ...$columns Columns list
@@ -274,7 +274,7 @@ public function rightJoinUsing(Closure | string $table, Closure | string ...$col
274274
}
275275

276276
/**
277-
* Sets the JOIN clause as "RIGHT OUTER JOIN $table ON $conditional".
277+
* Adds a JOIN clause with "RIGHT OUTER JOIN $table ON $conditional".
278278
*
279279
* @param Closure|string $table Table factor
280280
* @param Closure $conditional Conditional expression
@@ -287,7 +287,7 @@ public function rightOuterJoinOn(Closure | string $table, Closure $conditional)
287287
}
288288

289289
/**
290-
* Sets the JOIN clause as "RIGHT OUTER JOIN $table USING ...$columns".
290+
* Adds a JOIN clause with "RIGHT OUTER JOIN $table USING ...$columns".
291291
*
292292
* @param Closure|string $table Table factor
293293
* @param Closure|string ...$columns Columns list
@@ -300,7 +300,7 @@ public function rightOuterJoinUsing(Closure | string $table, Closure | string ..
300300
}
301301

302302
/**
303-
* Sets the JOIN clause as "NATURAL JOIN $table".
303+
* Adds a JOIN clause with "NATURAL JOIN $table".
304304
*
305305
* @param Closure|string $table Table factor
306306
*
@@ -312,7 +312,7 @@ public function naturalJoin(Closure | string $table) : static
312312
}
313313

314314
/**
315-
* Sets the JOIN clause as "NATURAL LEFT JOIN $table".
315+
* Adds a JOIN clause with "NATURAL LEFT JOIN $table".
316316
*
317317
* @param Closure|string $table Table factor
318318
*
@@ -324,7 +324,7 @@ public function naturalLeftJoin(Closure | string $table) : static
324324
}
325325

326326
/**
327-
* Sets the JOIN clause as "NATURAL LEFT OUTER JOIN $table".
327+
* Adds a JOIN clause with "NATURAL LEFT OUTER JOIN $table".
328328
*
329329
* @param Closure|string $table Table factor
330330
*
@@ -336,7 +336,7 @@ public function naturalLeftOuterJoin(Closure | string $table) : static
336336
}
337337

338338
/**
339-
* Sets the JOIN clause as "NATURAL RIGHT JOIN $table".
339+
* Adds a JOIN clause with "NATURAL RIGHT JOIN $table".
340340
*
341341
* @param Closure|string $table Table factor
342342
*
@@ -348,7 +348,7 @@ public function naturalRightJoin(Closure | string $table) : static
348348
}
349349

350350
/**
351-
* Sets the JOIN clause as "NATURAL RIGHT OUTER JOIN $table".
351+
* Adds a JOIN clause with "NATURAL RIGHT OUTER JOIN $table".
352352
*
353353
* @param Closure|string $table Table factor
354354
*

0 commit comments

Comments
 (0)