Oliver Eglseder

Results 20 comments of Oliver Eglseder

Another workaround: Overwrite vhost.conf in your Dockerfile and set the expected server name as first `server_name` argument. The real question is however why there is a `_` in the first...

> > @abikouo > > > You are using a recent version so it is not!! > > > > > > I do not understand what you mean >...

I can reproduce this error. Nested `f:switch` ViewHelpers sometimes fail to restore the "previous switch state" (The values of `switchExpression` and `break` in the `ViewHelperVariableContainer`). When the previous `break` value...

Hint: You can use https://github.com/sabbelasichon/typo3-rector as an alternative to refactor your code until this is fixed :wink:

Annotations of functions inside conditions are also ignored. ```php if (!function_exists('doesNothing')) { /** * @SuppressWarnings(PHPMD.CyclomaticComplexity) * @SuppressWarnings(PHPMD.NPathComplexity) */ function doesNothing() { if (true AND true AND false) return; if (true...

> cannot work as it has never been implemented That's a pity, which makes this not a bug but definitely a missing feature.

I have just seen that this stuff is used beyond GU::makeInstance. This will be hard

> That is already the case! See: https://github.com/TYPO3/class-alias-loader/blob/master/src/ClassAliasMapGenerator.php#L113-L117 This instance is created with `composer create-project` and TYPO3's composer.json has a `"always-add-alias-loader": true` in it. So these lines will never be...

> That is the price you have to pay for backwards compatibility. By the way: I think this is a task https://typo3.org/extensions/repository/view/compatibility6 should do. > You have a fully composer...

> That is the price you have to pay for backwards compatibility. By the way, i think https://typo3.org/extensions/repository/view/compatibility6 should handle that stuff, not a dependency package, that will always be...