EncapsedStringPart.php 383 B

1234567891011121314151617
  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. /**
  7. * For classmap-authoritative support.
  8. *
  9. * @deprecated use \PhpParser\Node\InterpolatedStringPart instead.
  10. */
  11. class EncapsedStringPart extends InterpolatedStringPart {
  12. }
  13. }