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