8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
17 lines
No EOL
419 B
PHP
17 lines
No EOL
419 B
PHP
<?php
|
|
|
|
class Zend_Acl_MockAssertion implements Zend_Acl_Assert_Interface
|
|
{
|
|
protected $_returnValue;
|
|
|
|
public function __construct($returnValue)
|
|
{
|
|
$this->_returnValue = (bool) $returnValue;
|
|
}
|
|
|
|
public function assert(Zend_Acl $acl, Zend_Acl_Role_Interface $role = null, Zend_Acl_Resource_Interface $resource = null,
|
|
$privilege = null)
|
|
{
|
|
return $this->_returnValue;
|
|
}
|
|
} |