hi i have cloned the project files and i have installed phalcon framework in xampp with version. i can see in php info as phalcon installed.
when i browse the project i overcome with this issue how can i resolve it.
Fatal error: Declaration of Phalcon\Acl\Adapter\Database::allow($roleName, $resourceName, $access) must be compatible with Phalcon\Acl\AdapterInterface::allow($roleName, $resourceName, $access, $func = NULL) in C:\xampp\htdocs\uvix1\uvix.co\common\incubator\Library\Phalcon\Acl\Adapter\Database.php on line 33
This my database.php code:
<?php
namespace Phalcon\Acl\Adapter;
use Phalcon\Db;
use Phalcon\Acl\Adapter;
use Phalcon\Acl\AdapterInterface;
use Phalcon\Acl\Exception;
use Phalcon\Acl\Resource;
use Phalcon\Acl;
use Phalcon\Acl\Role;
class Database extends Adapter implements AdapterInterface //this is line 33
{
protected $options;