Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:97359 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 54751 invoked from network); 12 Dec 2016 00:03:47 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Dec 2016 00:03:47 -0000 Authentication-Results: pb1.pair.com smtp.mail=larry@garfieldtech.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=larry@garfieldtech.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain garfieldtech.com from 66.111.4.28 cause and error) X-PHP-List-Original-Sender: larry@garfieldtech.com X-Host-Fingerprint: 66.111.4.28 out4-smtp.messagingengine.com Received: from [66.111.4.28] ([66.111.4.28:34531] helo=out4-smtp.messagingengine.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 08/53-27518-269ED485 for ; Sun, 11 Dec 2016 19:03:46 -0500 Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id 3EF2F20699; Sun, 11 Dec 2016 19:03:44 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute7.internal (MEProxy); Sun, 11 Dec 2016 19:03:44 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= smtpout; bh=AJVwDtkfDclgNBuKLfeLzUU6k+0=; b=dOzK8n0I/62rlZE4/cFl JkubSqvrw+qE1MSkK0l+zZxANoR0tnRbD5FutcW35ZErAv/gk+vbW9V5L7+iKGEB nD9FQqJspagBTeicsgDujNi4X/JHshK64Xb7lMB3Mi0PzaGtz0WVdIZGu27hN+FA 60mTcAX12LfPg0rio6S4REM= X-ME-Sender: X-Sasl-enc: NEXOSgw0PS3kdn0qyAgsCV/4VMatAuS5r/NWvwro86DD 1481501024 Received: from [192.168.42.5] (c-50-178-40-84.hsd1.il.comcast.net [50.178.40.84]) by mail.messagingengine.com (Postfix) with ESMTPA id E77337EE37; Sun, 11 Dec 2016 19:03:43 -0500 (EST) To: internals@lists.php.net References: <1807f949-81d3-f2c4-8706-0fdade3ea51d@garfieldtech.com> <4635ac4b-844a-b023-5ad9-e8524a156404@texthtml.net> Cc: Mathieu Rochette Message-ID: Date: Sun, 11 Dec 2016 18:03:43 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <4635ac4b-844a-b023-5ad9-e8524a156404@texthtml.net> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV][RFC][DISCUSSION] - Immutable classes and properties From: larry@garfieldtech.com (Larry Garfield) Assuming this was intended for the list... On 12/11/2016 05:55 PM, Mathieu Rochette wrote: > Currently the only "unlocked context" for an object is its > constructor. As discussed previously, that is insufficient. For any > non-trivial object (more than 1-3 internal properties) creating a new > one via the constructor only when incrementally building is > prohibitively difficult. The pattern of with*() methods that spawn > new objects via clone(), a la PSR-7, needs to be supported. That is: > > immutable class Money { > // ... > > public function add(Money $other) : Money { > $new = clone($this); > $new->amount += $other->amount; > return $new; > } > } > > I'm not sure how easily we can denote that sort of case. It's outside > the __clone() function itself, which is what makes it difficult. > Without that, though, such immutable objects are of only limited use. > > As you said, it has been already been discussed that a method to build > new altered object from an existing one could be improved. Different > options were proposed but maybe it's better to start small to get this > first part right and add this in another rfc ? having everything at the > same time might makes the rfc more difficult to be accepted On the contrary, an RFC that doesn't fully solve the issue at hand and leaves major gaps in place is a poor RFC, and I would expect to be justifiably voted down. --Larry Garfield