-
-
Notifications
You must be signed in to change notification settings - Fork 137
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
Adopt default container/routing files path to Symfony Flex #993
Conversation
thx related to #922 |
}; | ||
|
||
// Symfony 2 and 3 paths | ||
public static String[] DEFAULT_ROUTES = new String[] { | ||
"app/cache/dev/appDevUrlGenerator.php", | ||
"var/cache/dev/appDevUrlGenerator.php", | ||
"var/cache/dev/srcDevDebugProjectContainerUrlGenerator.php", |
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.
are you sure about DebugProjectContainer
here ? This looks weird to me
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.
ooh, yees, seems to typo, will check later for real name
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.
well, probably srcDevUrlGenerator.php
, as the only change is the kernel name (because of the kernel move from app
to src
)
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.
btw, the comment before should say Symfony 2, 3 and 4 paths
😄
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.
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.
@stof even more, Symfony 3.3 has similar naming
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.
hm, actually 2.7 has this change too symfony/symfony#20147
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.
hmm, indeed. But then, it means you have to add more paths to account for them in other places.
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.
Done in #1014
|
No description provided.