Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124436 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 5D7F41A00B7 for ; Mon, 15 Jul 2024 19:42:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1721072615; bh=cmDSXhWBDzMhjwjMjVHNU6so9GL6oTz35jheR6mx0aw=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=bJYckrCSwOb9DRuVGXiGFfsnNLYX6TX2HAvP2NgqKv9Lbjcuc9SQ0QxDtnf+PqQEz JOpwzS7sNI6Npljjc30OEbB+kX/oSiCQY5iO0evZntAWnxAbbS/CgrE3knIgSS9kQQ ZJy2ld8TFdOVqFUWFZTVjWAXn8kZNIRcxDA2tcGydvhC4I5mdziCusBf19/ICzrDgL COe/PwfMgYmhrBmvsY51X/bajfRxrB+2hZL2ptYMMq2I38NnIEisVSivfZTWvF7KdL xlNM2T8LgoWg6i2nYhCf40pbqr/Q1eR1VsWRgzY3Rec3c5rzNVrtAvqA4kNPMaRXJm MmVSAxcj6KU2Q== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id A61E818005B for ; Mon, 15 Jul 2024 19:43:34 +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 autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No 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 ; Mon, 15 Jul 2024 19:43:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1721072523; bh=Fxq//NN7CZeeld0KIkUKvoqO7UefUS+HfNnMxuuUkJY=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=Qsppm/x72qowcmmt+G1ymtShAuhvFai8KW6u2Ow/hZa4wfXtvCo+9Y+WvH8nmnPoT M31VF8xP5ei8QxInLwV5CS4R4wcKYhe5dZaUH5p+WmndqSDkSGdI7LovpskLoNYqaS PlyjePYrPGdR+E8am91KWXevtWkiht2rhMQlt5Q0R/fM+A8iy8cfWvE03LsX1wIGMy 6SMcKMA+c8jzEvRRu0fY/1W3lTCwbllfp8q5TCqrhlx/T4ieDsZC58Qb7Bib9oYisH hmDxxMO/chWezlenP9N9qPAltxIYE/smNpW3uOOnkL02tPitag35OiH6DvZGFov8aQ elfs1OruvC6wg== Message-ID: <2a0a4650-c2c5-4c6d-ad3a-25365b3391b2@bastelstu.be> Date: Mon, 15 Jul 2024 21:42:03 +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: Nicolas Grekas , Rob Landers Cc: =?UTF-8?Q?Benjamin_Au=C3=9Fenhofer?= , PHP Internals List References: <1118bbcd-a7b4-47bf-bf35-1a36ab4628e1@bastelstu.be> <45847b93-02bf-459f-bcd2-81ba35a12c24@bastelstu.be> <46bd4098-2936-4e46-98e9-fe55118325c2@bastelstu.be> <61ab36bc-b045-452a-84e0-87367d4c680e@bastelstu.be> <07e065f2-8f64-4bad-9a98-51f4eaf63ddb@app.fastmail.com> Content-Language: en-US In-Reply-To: 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 7/15/24 09:25, Nicolas Grekas wrote: > Testing is actually a good domain where resetting lazy objects might open > interesting use cases. > This reminded me about zenstruck/foundry, which leverages the > LazyProxyTrait to provide refreshable fixture objects > > and provides nice DX thanks to this capability. > I have not used this library before, but I have taken a (very) brief look at the code and documentation. My understanding is that all the fixture objects are generated by a corresponding Factory class. This factory clearly has the capability of constructing objects by itself, so it could just create a lazy proxy instead? I'm seeing the `instantiateWith()` example in the documentation where the user can return a constructed object themselves, but I'm not seeing how that can safely be combined with the `reset*()` methods: Anything special the user did to construct the object would be reverted, so the user might as well rely on the default construction logic of the factory then. What am I missing? Best regards Tim Düsterhus