PageRenderTime 45ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/Acl/Event/AclEventHandler.php

https://github.com/kareypowell/croogo
PHP | 21 lines | 7 code | 4 blank | 10 comment | 0 complexity | 13df7f1f3f507afd2c9c41e858b3b752 MD5 | raw file
  1. <?php
  2. App::uses('CakeEventListener', 'Event');
  3. /**
  4. * AclEventHandler
  5. *
  6. * @package Croogo.Acl.Event
  7. * @license http://www.opensource.org/licenses/mit-license.php The MIT License
  8. * @link http://www.croogo.org
  9. */
  10. class AclEventHandler implements CakeEventListener {
  11. /**
  12. * implementedEvents
  13. */
  14. public function implementedEvents() {
  15. return array();
  16. }
  17. }