29 lines
528 B
PHP
Raw Normal View History

2023-11-30 22:53:01 +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
{
2023-12-03 23:09:30 +08:00
public int $count = 0;
2023-11-30 22:53:01 +08:00
2023-12-03 23:09:30 +08:00
public function __construct(
public readonly int $id,
public readonly mixed $value = null,
) {
2023-11-30 22:53:01 +08:00
}
}