Server : Apache System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 User : vapecompany ( 2719) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/vapecompany/demo.vapecompany.com.bd/vendor/opis/closure/src/ |
Upload File : |
<?php /* =========================================================================== * Copyright (c) 2018-2021 Zindex Software * * Licensed under the MIT License * =========================================================================== */ namespace Opis\Closure; /** * Helper class used to indicate a reference to an object * @internal */ class SelfReference { /** * @var string An unique hash representing the object */ public $hash; /** * Constructor * * @param string $hash */ public function __construct($hash) { $this->hash = $hash; } }