-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[FrameworkBundle] Fix class_exists() checks in PhpArrayAdapter-related cache warmers #21243
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
Conversation
83807b5
to
9ee969d
Compare
* @param string $phpArrayFile The PHP file where annotations are cached. | ||
* @param CacheItemPoolInterface $fallbackPool The pool where runtime-discovered annotations are cached. | ||
* @param string $phpArrayFile the PHP file where annotations are cached | ||
* @param CacheItemPoolInterface $fallbackPool the pool where runtime-discovered annotations are cached |
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.
Maj should be reverted, dots can be removed indeed
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.
reverted
* @param CacheItemPoolInterface $fallbackPool The pool where runtime-discovered metadata are cached. | ||
* @param LoaderInterface[] $loaders the serializer metadata loaders | ||
* @param string $phpArrayFile the PHP file where metadata are cached | ||
* @param CacheItemPoolInterface $fallbackPool the pool where runtime-discovered metadata are cached |
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.
same
9ee969d
to
e09dccc
Compare
Thank you @nicolas-grekas. |
…pter-related cache warmers (nicolas-grekas, mpajunen) This PR was merged into the 3.2 branch. Discussion ---------- [FrameworkBundle] Fix class_exists() checks in PhpArrayAdapter-related cache warmers | Q | A | ------------- | --- | Branch? | 3.2 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Follow up of #21102 Commits ------- e09dccc [FrameworkBundle] Add annotated validator cache test case c60009e [FrameworkBundle] Fix class_exists() checks in PhpArrayAdapter-related cache warmers
@@ -17,7 +17,7 @@ | |||
], | |||
"require": { | |||
"php": ">=5.5.9", | |||
"symfony/cache": "~3.2", | |||
"symfony/cache": "~3.2.2|~3.3", |
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.
Why not ^3.2.2
?
Follow up of #21102