29 lines
528 B
PHP
Raw Normal View History

2025-10-16 21:07:43 +08:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\VarExporter\Internal;
/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @internal
*/
class Reference
{
2025-10-20 09:23:30 +08:00
public int $count = 0;
2025-10-16 21:07:43 +08:00
2025-10-20 09:23:30 +08:00
public function __construct(
public readonly int $id,
public readonly mixed $value = null,
) {
2025-10-16 21:07:43 +08:00
}
}