1<?php23declare(strict_types=1);45namespaceZtdQuery\Shadow\Mutation\Upsert;67/**8 * Retains the type and identity of one expression literal.9 *10 * @template TValue11 */12finalclassUpsertLiteralimplementsUpsertLiteralSource13{14/**15 * @param TValue $value Literal supplied by the caller.16 */17publicfunction__construct(privatereadonlymixed$value)18 {19 }2021/**22 * @return TValue The unchanged literal.23 */24publicfunctionvalue(): mixed25 {26return$this->value;27 }28}29