123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Symfony\Component\VarExporter\Internal;
- class Reference
- {
- public $id;
- public $value;
- public $count = 0;
- public function __construct(int $id, $value = null)
- {
- $this->id = $id;
- $this->value = $value;
- }
- }
|