i am having a situation where my doctrine model, Post
, is in the namespace Application\Entities
and i want to try to implement Zend_Acl_Resource_Interface
. i get the error
Fatal error: Interface 'Application\Entities\Zend_Acl_Resource_Interface' not found in D:\Projects\Websites\php\ZendFram ework\LearningZF\library\Application\Entities\Post.php on line 8
namespace Application\Entities;
use DoctrineExtensions\NestedSet\Node;
/**
* @Entity @Table(name="posts")
*/
class Post implements Node, Zend_Acl_Resource_Interface {
update
if i try
class Post implements Node, \Zend_Acl_Resource_Interface {
Fatal error: Interface 'Zend_Acl_Resource_Interface' not found in D:\Projects\Websites\php\ZendFramework\LearningZF\library\Application\Entities\Post.php on line 8