-
-
Notifications
You must be signed in to change notification settings - Fork 391
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
Reorganize classes for 2.0 #707
Conversation
c96f84d
to
ad4a098
Compare
@@ -2,7 +2,7 @@ | |||
|
|||
declare(strict_types=1); | |||
|
|||
namespace Doctrine\Migrations; | |||
namespace Doctrine\Migrations\MigrationTable; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about calling this Storage/Tracking/Persistence?
Can we somehow also rename MigratorConfig? At least replacing the abbreviation (MigratorConfiguration). |
@@ -9,3 +9,5 @@ phpunit.xml | |||
/phpcs.xml | |||
/.phpcs-cache | |||
/box.phar | |||
/.idea |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO, this line belongs to a personal .gitignore
file but not to the project, unless the project is tightly coupled to the IDE.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't know you could do that. I will remove it and do that. Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed here d3d7a8c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO, this line belongs to a personal
.gitignore
file
👍
There is nice article from GitHub: https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
Summary
As we refactored, several new classes were created and put in the root namespace. Move the logical groupings in to folders.