1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\Rules;
4:
5: /**
6: * @api
7: * @api-do-not-implement
8: */
9: interface LineRuleError extends RuleError
10: {
11:
12: public function getLine(): int;
13:
14: }
15: