1: <?php declare(strict_types = 1);
2:
3: namespace ApiGen\Info;
4:
5:
6: /**
7: * @property-read bool $primary
8: */
9: interface ElementInfo
10: {
11: public function isDeprecated(): bool;
12: }
13: