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