Mercurial > hg > isophonics-drupal-site
annotate vendor/phpdocumentor/reflection-common/src/Element.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 7a779792577d |
children |
rev | line source |
---|---|
Chris@12 | 1 <?php |
Chris@12 | 2 /** |
Chris@12 | 3 * phpDocumentor |
Chris@12 | 4 * |
Chris@12 | 5 * PHP Version 5.5 |
Chris@12 | 6 * |
Chris@12 | 7 * @copyright 2010-2015 Mike van Riel / Naenius (http://www.naenius.com) |
Chris@12 | 8 * @license http://www.opensource.org/licenses/mit-license.php MIT |
Chris@12 | 9 * @link http://phpdoc.org |
Chris@12 | 10 */ |
Chris@12 | 11 |
Chris@12 | 12 namespace phpDocumentor\Reflection; |
Chris@12 | 13 |
Chris@12 | 14 /** |
Chris@12 | 15 * Interface for Api Elements |
Chris@12 | 16 */ |
Chris@12 | 17 interface Element |
Chris@12 | 18 { |
Chris@12 | 19 /** |
Chris@12 | 20 * Returns the Fqsen of the element. |
Chris@12 | 21 * |
Chris@12 | 22 * @return Fqsen |
Chris@12 | 23 */ |
Chris@12 | 24 public function getFqsen(); |
Chris@12 | 25 |
Chris@12 | 26 /** |
Chris@12 | 27 * Returns the name of the element. |
Chris@12 | 28 * |
Chris@12 | 29 * @return string |
Chris@12 | 30 */ |
Chris@12 | 31 public function getName(); |
Chris@12 | 32 } |