* SPDX-License-Identifier: MIT */ declare(strict_types=1); namespace Respect\Validation; final class Path { public function __construct( public readonly int|string $value, public Path|null $parent = null, ) { } }