Hello i have problem with warning in Zend Studio 10. I create Album Controller and set
namespace Album\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zned\View\Model\ViewModel;
After that i declare controller :
class AlbumController extends AbstractActionController
Warning is :
Description Resource Path Location Type
Cannot extend from interface 'AbstractActionController' AlbumController.php /zf2-tutorial/module/Album/src/Album/Controller line 8 DLTK Problem
But all work good. How can fix this?