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