Project.php 646 B

1234567891011121314151617181920212223242526
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * phpDocumentor
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. *
  9. * @copyright 2010-2018 Mike van Riel / Naenius (http://www.naenius.com)
  10. * @license http://www.opensource.org/licenses/mit-license.php MIT
  11. * @link http://phpdoc.org
  12. */
  13. namespace phpDocumentor\Reflection;
  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. public function getName(): string;
  23. }