1<?php declare(strict_types=1); 2 3namespace PhpParser\Node; 4 5abstract class Scalar extends Expr { 6} 7