EncapsedStringPart.php 289 B

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