-
Notifications
You must be signed in to change notification settings - Fork 9
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
TASK: Use PHP 8 features #19
base: main
Are you sure you want to change the base?
Conversation
9f060d7
to
fb81829
Compare
@Sebobo Is this ready for review? |
Think so |
Not really sure about those inject annotations because they lead to non-lazy injections. Is that worth the performance impact |
No clue if that matters much, also didn't know the annotation behaves so differently. Can change it back for those cases. |
@Sebobo that was not precise from me, What behaves differently is typed properties that are injected because the strict type does not allow lazy injection. The annotation itself is not a problem. |
@mficzel adjusted it again |
/** | ||
* @Flow\Before("method(Neos\Fusion\Core\Cache\ContentCache->(createUncachedSegment)())") | ||
*/ |
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.
Could also be rewritten to
#[Flow\Before("method(Neos\Fusion\Core\Cache\ContentCache->createUncachedSegment())")]
Relates: #18