Project is using old interface
MathijsG opened this issue · 1 comments
MathijsG commented
Slim 3 changed the containerinterface from Interop to psr in later versions of Slim 3 (slimphp/Slim@305e2df).
A solution is to alter ControllerAbstract.php and change:
use Interop\Container\ContainerInterface;
to:
use Psr\Container\ContainerInterface;
ricardoper commented
Fixed, Thanks @MathijsG.