@@ -199,7 +199,7 @@ public function setMigratingUp(bool $isMigratingUp)
199199 /**
200200 * Hook method to decide if this migration should use transactions
201201 *
202- * By default if your driver supports transactions, a transaction will be opened
202+ * By default, if your driver supports transactions, a transaction will be opened
203203 * before the migration begins, and commit when the migration completes.
204204 *
205205 * @return bool
@@ -253,7 +253,7 @@ public function query(string $sql, array $params = []): mixed
253253 * Returns a new Query object that can be used to build complex SELECT, UPDATE, INSERT or DELETE
254254 * queries and execute them against the current database.
255255 *
256- * Queries executed through the query builder are always sent to the database, regardless of the
256+ * Queries executed through the query builder are always sent to the database, regardless of
257257 * the dry-run settings.
258258 *
259259 * @see https://api.cakephp.org/3.6/class-Cake.Database.Query.html
@@ -269,7 +269,7 @@ public function getQueryBuilder(string $type): Query
269269 * Returns a new SelectQuery object that can be used to build complex
270270 * SELECT queries and execute them against the current database.
271271 *
272- * Queries executed through the query builder are always sent to the database, regardless of the
272+ * Queries executed through the query builder are always sent to the database, regardless of
273273 * the dry-run settings.
274274 *
275275 * @return \Cake\Database\Query\SelectQuery
@@ -283,7 +283,7 @@ public function getSelectBuilder(): SelectQuery
283283 * Returns a new InsertQuery object that can be used to build complex
284284 * INSERT queries and execute them against the current database.
285285 *
286- * Queries executed through the query builder are always sent to the database, regardless of the
286+ * Queries executed through the query builder are always sent to the database, regardless of
287287 * the dry-run settings.
288288 *
289289 * @return \Cake\Database\Query\InsertQuery
@@ -297,7 +297,7 @@ public function getInsertBuilder(): InsertQuery
297297 * Returns a new UpdateQuery object that can be used to build complex
298298 * UPDATE queries and execute them against the current database.
299299 *
300- * Queries executed through the query builder are always sent to the database, regardless of the
300+ * Queries executed through the query builder are always sent to the database, regardless of
301301 * the dry-run settings.
302302 *
303303 * @return \Cake\Database\Query\UpdateQuery
@@ -311,7 +311,7 @@ public function getUpdateBuilder(): UpdateQuery
311311 * Returns a new DeleteQuery object that can be used to build complex
312312 * DELETE queries and execute them against the current database.
313313 *
314- * Queries executed through the query builder are always sent to the database, regardless of the
314+ * Queries executed through the query builder are always sent to the database, regardless of
315315 * the dry-run settings.
316316 *
317317 * @return \Cake\Database\Query\DeleteQuery
@@ -369,7 +369,7 @@ public function dropDatabase(string $name): void
369369 /**
370370 * Creates schema.
371371 *
372- * This will thrown an error for adapters that do not support schemas.
372+ * This will throw an error for adapters that do not support schemas.
373373 *
374374 * @param string $name Schema name
375375 * @return void
@@ -383,7 +383,7 @@ public function createSchema(string $name): void
383383 /**
384384 * Drops schema.
385385 *
386- * This will thrown an error for adapters that do not support schemas.
386+ * This will throw an error for adapters that do not support schemas.
387387 *
388388 * @param string $name Schema name
389389 * @return void
0 commit comments