1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\Reflection;
4:
5: /** @api */
6: interface NamespaceAnswerer
7: {
8:
9: /**
10: * @return non-empty-string|null
11: */
12: public function getNamespace(): ?string;
13:
14: }
15: