PageRenderTime 66ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://github.com/androa/Docblox
PHP | 38 lines | 11 code | 3 blank | 24 comment | 0 complexity | be98dd7c425e3df4a7c210c0c8727444 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 property.
  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_Property 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. 'var',
  31. 'version',
  32. 'copyright',
  33. 'author'
  34. );
  35. }