Hi,
I tried to extend ControllerBase class from AuthController but this is happen: Fatal error: Class 'ControllerBase' not found C:\xampp\htdocs\tc\app\controllers\IndexController.php on line 3 .
ControllerBase.php
<?php
use Phalcon\Mvc\Controller;
class ControllerBase extends Controller
{
public function onConstruct()
{
}
}
AuthController.php
<?php
class AuthController extends ControllerBase
{
public function indexAction()
{
}
}
It is there a problem? I use PhpStorm and I added ExternalLibraries from C:\phalcon-devtools-master\ide\stubs\Phalcon
Can you please help with this?
Thanks, Razvan!