Subversion Repositories web.creative

Rev

Details | Last modification | View Log

Rev Author Line No. Line
1 mjordaan 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
 
12
namespace phpDocumentor\Reflection;
13
 
14
/**
15
 * Interface for project. Since the definition of a project can be different per factory this interface will be small.
16
 */
17
interface Project
18
{
19
    /**
20
     * Returns the name of the project.
21
     *
22
     * @return string
23
     */
24
    public function getName();
25
}