annotate vendor/phpdocumentor/reflection-common/src/Project.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents
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 project. Since the definition of a project can be different per factory this interface will be small.
Chris@12 16 */
Chris@12 17 interface Project
Chris@12 18 {
Chris@12 19 /**
Chris@12 20 * Returns the name of the project.
Chris@12 21 *
Chris@12 22 * @return string
Chris@12 23 */
Chris@12 24 public function getName();
Chris@12 25 }