PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/src/DocBlox/Transformer/Behaviour/Inherit/Node/Method.php

https://github.com/androa/Docblox
PHP | 41 lines | 14 code | 3 blank | 24 comment | 0 complexity | cf1e0282102510c69693436fe7a5b8f6 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <?php
  2. /**
  3. * DocBlox
  4. *
  5. * PHP Version 5
  6. *
  7. * @category DocBlox
  8. * @package Transformer
  9. * @subpackage Behaviour
  10. * @author Mike van Riel <mike.vanriel@naenius.com>
  11. * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
  12. * @license http://www.opensource.org/licenses/mit-license.php MIT
  13. * @link http://docblox-project.org
  14. */
  15. /**
  16. * Responsible for adding inheritance behaviour to an individual method.
  17. *
  18. * @category DocBlox
  19. * @package Transformer
  20. * @subpackage Behaviour
  21. * @author Mike van Riel <mike.vanriel@naenius.com>
  22. * @license http://www.opensource.org/licenses/mit-license.php MIT
  23. * @link http://docblox-project.org
  24. */
  25. class DocBlox_Transformer_Behaviour_Inherit_Node_Method extends
  26. DocBlox_Transformer_Behaviour_Inherit_Node_Abstract
  27. {
  28. /** @var string[] All class tags that are inherited when none are defined */
  29. protected $inherited_tags = array(
  30. 'param',
  31. 'return',
  32. 'throws',
  33. 'throw',
  34. 'version',
  35. 'copyright',
  36. 'author'
  37. );
  38. }