<?php/* =========================================================================== * Copyright (c) 2018 Zindex Software * * Licensed under the MIT License * =========================================================================== */namespaceOpis\Closure;/** * Helper class used to indicate a reference to an object * @internal */classSelfReference{/** * @var string An unique hash representing the object */public$hash;/** * Constructor * * @param string $hash */publicfunction__construct($hash){$this->hash=$hash;}}