Element.php 561 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * phpDocumentor
  4. *
  5. * PHP Version 5.5
  6. *
  7. * @copyright 2010-2015 Mike van Riel / Naenius (http://www.naenius.com)
  8. * @license http://www.opensource.org/licenses/mit-license.php MIT
  9. * @link http://phpdoc.org
  10. */
  11. namespace phpDocumentor\Reflection;
  12. /**
  13. * Interface for Api Elements
  14. */
  15. interface Element
  16. {
  17. /**
  18. * Returns the Fqsen of the element.
  19. *
  20. * @return Fqsen
  21. */
  22. public function getFqsen();
  23. /**
  24. * Returns the name of the element.
  25. *
  26. * @return string
  27. */
  28. public function getName();
  29. }