Symfony 2 - Fatal error: Cannot redeclare class SessionHandlerInterface in C:\…\app\cache\dev\classes.php on line 532

后端 未结 7 933
借酒劲吻你
借酒劲吻你 2020-12-11 00:38

After reinstalling my wamp environment this error message is showing on screen after I open app_dev.php:

Fatal error: Cannot redeclare class SessionHa

7条回答
  •  庸人自扰
    2020-12-11 01:13

    Make sure you have defined namespace in your interface SessionHandlerInterface

    EX:

    namespace app\cache\dev;
    

提交回复
热议问题