所以我将 BjyAuthorize 用于路由保护和资源规则,我在 BjyAuthorize 的规则提供程序中使用断言,但他们似乎抛出了这个错误
致命错误:在第 178 行的 /home/haris/Glide/vcgca/vendor/zendframework/zend-stdlib/src/PriorityQueue.php 中,未捕获的异常 'Exception' 带有消息 'Serialization of 'Closure' is not allowed'
例外:在第 178 行的 /home/haris/Glide/vcgca/vendor/zendframework/zend-stdlib/src/PriorityQueue.php 中不允许序列化“Closure”
这是我对规则提供者的配置:
'bjyauthorize' => array(
'resource_providers' => array(
'BjyAuthorize\Provider\Resource\Config' => array(
'Page' => array(),
),
),
'rule_providers' => array(
'BjyAuthorize\Provider\Rule\Config' => array(
'allow' => array(
array(array('user', 'user1'), 'Page', array('edit'), 'assertion.CheckManager'),
),
),
),
),
这是我的断言类工厂:
class PageManagerAssertionFactory implements FactoryInterface {
public function createService(ServiceLocatorInterface $serviceLocator) {
$authentication = $serviceLocator->get('zfcuser_auth_service');
$entityManager = $serviceLocator->get('doctrine.entitymanager.orm_default');
return new PageManagerAssertion($authentication, $entityManager);
}
}
这是我的断言类:
class PageManagerAssertion implements AssertionInterface {
protected $authentication;
protected $entityManager;
public function __construct($authentication, EntityManager $entityManager) {
$this->authentication = $authentication;
$this->entityManager = $entityManager;
}
public function assert(Acl $acl, RoleInterface $role = null, ResourceInterface $resource = null, $privilege = null) {
if ($resource instanceof Page) {
return false;
} else {
return true;
}
}
}
我已将此类包含在服务 service_manager 配置中module.config.php
'service_manager' => array(
'factories' => array(
//ASSERTIONS
'assertion.CheckManager' => 'AlphaPage\Assertion\PageManagerAssertionFactory',
//OTHERS
......
),
),
我不知道为什么会出现这个错误,我按照所有步骤来使用这些模块,我在其他模块中的断言完全正常。
在这方面的任何帮助将不胜感激。