module-yii2 icon indicating copy to clipboard operation
module-yii2 copied to clipboard

if [yii\filters\ContentNegotiator] is in `bootstrap` it does not work

Open mikk150 opened this issue 9 months ago • 2 comments

IF I want to use yii\filters\ContentNegotiator in bootstrap(as it implements yii\base\BootstrapInterface and therefore I should be able to do so)

It unfortunately does not work as

Therefore it does not work

There are 2 solutions how to fix it

  1. Move Request making to L345 and remove L355-L363 entirely
  2. yii\filters\ContentNegotiator::bootstrap() should only register eventHandler on yii\base\Application on beforeAction event and handle it's own yii\filters\ContentNegotiator::beforeAction()

mikk150 avatar May 08 '24 13:05 mikk150