Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #964

Merged
merged 1 commit into from
Apr 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/en/reference/migration-classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ addSql

You can use the ``addSql`` method within the ``up`` and ``down`` methods. Internally the ``addSql`` calls are passed
to the executeQuery method in the DBAL. This means that you can use the power of prepared statements easily and that
you don't need to copy paste the same query with different parameters. You can just pass those differents parameters
you don't need to copy paste the same query with different parameters. You can just pass those different parameters
to the addSql method as parameters.

.. code-block:: php
Expand Down
2 changes: 1 addition & 1 deletion lib/Doctrine/Migrations/MigrationRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use function uasort;

/**
* The MigrationRepository class is responsible for retrieving migrations, determing what the current migration
* The MigrationRepository class is responsible for retrieving migrations, determining what the current migration
* version, etc.
*
* @internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

/**
* The DumpSchemaCommand class is responsible for dumping your current database schema to a migration class. This is
* intended to be used in conjuction with the RollupCommand.
* intended to be used in conjunction with the RollupCommand.
*
* @see Doctrine\Migrations\Tools\Console\Command\RollupCommand
*/
Expand Down