. * * @author Daniil Gentili * @copyright 2016-2020 Daniil Gentili * @license https://opensource.org/licenses/AGPL-3.0 AGPLv3 * * @link https://docs.madelineproto.xyz MadelineProto documentation */ class YieldReturnValue { private $value; public function __construct($value) { $this->value = $value; } public function getReturn() { return $this->value; } }