1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\PhpDoc;
4:
5: /** @api */
6: interface StubFilesExtension
7: {
8:
9: public const EXTENSION_TAG = 'phpstan.stubFilesExtension';
10:
11: /** @return string[] */
12: public function getFiles(): array;
13:
14: }
15: