1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\Rules;
4:
5: /**
6: * @api
7: * @api-do-not-implement
8: */
9: interface MetadataRuleError extends RuleError
10: {
11:
12: /**
13: * @return mixed[]
14: */
15: public function getMetadata(): array;
16:
17: }
18: