You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wonder if we could use cakephp/phinx#1820 to namespace our migration classes
They are the only code I still have to exclude from sniffers so far:
FOUND 2 ERRORS AFFECTING 1 LINE
----------------------------------------------------------------------------------------------------------------------------------------
6 | ERROR | Class name "MigrationLanguages" doesn't match filename, expected "20201014000218_MigrationLanguages"
6 | ERROR | Each class must be in a namespace of at least one level (a top-level vendor name)
With the namespace way it would also probably be a bit cleaner and less conflicting regarding the names.
Right now I always prefix them with Migration to avoid naming clashes/collisions with existing top level classes.
The text was updated successfully, but these errors were encountered:
I wonder if we could use cakephp/phinx#1820 to namespace our migration classes
They are the only code I still have to exclude from sniffers so far:
With the namespace way it would also probably be a bit cleaner and less conflicting regarding the names.
Right now I always prefix them with Migration to avoid naming clashes/collisions with existing top level classes.
The text was updated successfully, but these errors were encountered: