Skip to content
Advertisement

Cannot call abstract method interface in Service-Repository pattern

In my Laravel9 project, I have many controllers that have similar functions like:

TestController.php

JavaScript

Test1Controller.php

JavaScript

So I modified them into:

TestController.php

JavaScript

Test1Controller.php

JavaScript

ApiController.php

JavaScript

TestInterface.php

JavaScript

BaseInterface.php

JavaScript

Then I bind interfaces into services in AppServiceProvider.php, like:

JavaScript

TestService.php:

JavaScript

Test1Service.php

JavaScript

When I call TestController::index on my route, I get:

Cannot call abstract method AppContractsTestInterface::index()

How can I fix it or do any better suggestions? Thanks.

Advertisement

Answer

I just solved the problem by modifying the following line in ApiController.php:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement