Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124092 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id 1A7A01A009C for ; Sun, 30 Jun 2024 13:28:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1719754196; bh=gkXkU1SSb2+l2rqlnReyhX4RcE/2EZBguuz43+TjtBA=; h=Date:Subject:From:To:Cc:References:In-Reply-To:From; b=G6tevm9CbSu9xapUwG14mxJPtdFNSNgk0bDNFRAAgD0rshgQCLQxMmu/4bm3UyhTB LAnrVV/blBAdlFrYWRmYd3qx7M7uMcgRcwQjPrEbAdBl53U9ZsnX1k5ZPk/bHoKdEY fxlSXyV2IScKp4uUV9ivDDKKWGbEqe6dfcjDpup6Vxv/OTfrAN3/hf/4QTKxCiCNEh czIw+OL7ysPEk3M0O8q5eX/ncLnwGwMNGk5fKvvus0Js9OeDaiJmE5bp3KI77OUvKG 6AIB+u2I0R78F1kX/ZjRt5MqoIOQQQYG3/FU1sWdRDfQ6qfMvfY0AYMJpbw+BJ95dv BUnlQvRHCoIoQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 5105018004A for ; Sun, 30 Jun 2024 13:29:56 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: Error (Cannot connect to unix socket '/var/run/clamav/clamd.ctl': connect: Connection refused) X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Sun, 30 Jun 2024 13:29:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1719754114; bh=0Avlvj77OGrM4ACQ80z2b9K6+P1CxBr5RVOd9rnx7VY=; h=Message-ID:Date:MIME-Version:Subject:From:To:Cc:References: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=EAKZ6KjCjH06wLnQ9a3Iu5X3Y2ncV7i+TgMrFZT0vJyau0MtPabaihTEoF1SuzYaY oNx6JpEz9oSCSySbtMod1KxzSXs3WX9VtpsCZwCCT4dETV1zqOWVSdFnjbJN4AnVvx s5LUlkxtZugNHggV2+8XcWmzd8gG5kGT160j6NYanftqGmvYvAM3SmcN+ReIq1DU4p l63nZaP94/GnfN7LpKMrpr8Yo0TLzqgC1nTjilntQNHAlovBOE7Pjy6SluFHTFd+HS YAayrqh/a+yYO2x9h7jETfhh6y/JoQtjtuydREKbNDrtAI5MEJxexveGdC4FFMSRhL t5xpw7cVgOPIw== Message-ID: <386fa86a-696a-4a03-89d8-87fcf6991138@bastelstu.be> Date: Sun, 30 Jun 2024 15:28:32 +0200 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net MIME-Version: 1.0 Subject: Re: [PHP-DEV] [RFC] Lazy Objects To: Arnaud Le Blanc Cc: Nicolas Grekas , PHP Internals List References: <1118bbcd-a7b4-47bf-bf35-1a36ab4628e1@bastelstu.be> <45847b93-02bf-459f-bcd2-81ba35a12c24@bastelstu.be> Content-Language: en-US In-Reply-To: <45847b93-02bf-459f-bcd2-81ba35a12c24@bastelstu.be> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=C3=BCsterhus?=) Hi On 6/30/24 15:08, Tim Düsterhus wrote: > I've read the updated RFC and it's still not clear to me that returning > an arbitrary “actual instance” object is sound. Especially when private > properties - which for all intents and purposes are not visible outside > of the class - are involved. Consider the following: I initially wanted to include any new questions in a completely separate thread to keep stuff organized, but I realized that the cloning behavior is very closely related to what I already remarked above: The cloning behavior appears to be unsound to me. Consider the following: class A { public function __construct( public string $property, ) {} } class B extends A { public function foo() { } } function only_b(B $b) { $b->foo(); } $r = new ReflectionClass(B::class); $b = $r->newLazyProxy(function ($obj) { return new A('value'); }); $b->property = 'init_please'; $notActuallyB = clone $b; only_b($b); // legal only_b($notActuallyB); // illegal I'm cloning what I believe to be an instance of B, but get back an A. Best regards Tim Düsterhus