<?phpdeclare(strict_types=1);namespacePhpParser\Internal;/** * @internal */classDiffElem{constTYPE_KEEP=0;constTYPE_REMOVE=1;constTYPE_ADD=2;constTYPE_REPLACE=3;/** @var int One of the TYPE_* constants */public$type;/** @var mixed Is null for add operations */public$old;/** @var mixed Is null for remove operations */public$new;publicfunction__construct(int$type,$old,$new){$this->type=$type;$this->old=$old;$this->new=$new;}}