1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | namespace PHPStan\BetterReflection\Reflection\Adapter\Exception; |
6: | |
7: | class NotImplementedBecauseItTriggersAutoloading extends NotImplemented |
8: | { |
9: | public static function create(): self |
10: | { |
11: | return new self('Not implemented because it triggers autoloading'); |
12: | } |
13: | } |
14: |