Encapsed.php 321 B

123456789101112131415
  1. <?php declare(strict_types=1);
  2. namespace PhpParser\Node\Scalar;
  3. require __DIR__ . '/InterpolatedString.php';
  4. if (false) {
  5. /**
  6. * For classmap-authoritative support.
  7. *
  8. * @deprecated use \PhpParser\Node\Scalar\InterpolatedString instead.
  9. */
  10. class Encapsed extends InterpolatedString {
  11. }
  12. }