| 1: | <?php declare(strict_types=1); |
| 2: | |
| 3: | namespace PhpParser\Node\Stmt; |
| 4: | |
| 5: | require __DIR__ . '/../StaticVar.php'; |
| 6: | |
| 7: | if (false) { |
| 8: | /** |
| 9: | * For classmap-authoritative support. |
| 10: | * |
| 11: | * @deprecated use \PhpParser\Node\StaticVar instead. |
| 12: | */ |
| 13: | class StaticVar extends \PhpParser\Node\StaticVar { |
| 14: | } |
| 15: | } |
| 16: |