Mercurial > hg > isophonics-drupal-site
view 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 |
line wrap: on
line source
<?php /** * phpDocumentor * * PHP Version 5.5 * * @copyright 2010-2015 Mike van Riel / Naenius (http://www.naenius.com) * @license http://www.opensource.org/licenses/mit-license.php MIT * @link http://phpdoc.org */ namespace phpDocumentor\Reflection; /** * Interface for Api Elements */ interface Element { /** * Returns the Fqsen of the element. * * @return Fqsen */ public function getFqsen(); /** * Returns the name of the element. * * @return string */ public function getName(); }