Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:115347 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 66096 invoked from network); 7 Jul 2021 12:30:58 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 7 Jul 2021 12:30:58 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 1FB0A1804CC for ; Wed, 7 Jul 2021 05:52:58 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00,KHOP_HELO_FCRDNS, SPF_HELO_NONE,SPF_NONE,UNPARSEABLE_RELAY autolearn=no autolearn_force=no version=3.4.2 X-Spam-Virus: No X-Envelope-From: Received: from processus.org (ns366368.ip-94-23-14.eu [94.23.14.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Wed, 7 Jul 2021 05:52:57 -0700 (PDT) Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) by processus.org (Postfix) with ESMTPA id 8C3E35101324; Wed, 7 Jul 2021 12:52:54 +0000 (UTC) To: Brent Roose , PHP Internals References: Message-ID: <34efe11c-e4ce-d5f3-ef08-9d8dc3eb91ef@processus.org> Date: Wed, 7 Jul 2021 14:52:53 +0200 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US Authentication-Results: processus.org; auth=pass smtp.auth=pierre-php@processus.org smtp.mailfrom=pierre-php@processus.org X-Spamd-Bar: / Subject: Re: [PHP-DEV] Readonly properties and interfaces From: pierre-php@processus.org (Pierre) Le 07/07/2021 à 14:32, Brent Roose a écrit : > Hi internals > > With the readonly properties RFC almost certainly accepted, I'd like to discuss an idea that's slightly related to them. > > One of the problems that readonly properties solve is that they reduce the overhead of writing getters and setters. This is especially noticeable in objects that hold lots of data — data transfer objects, value objects, entities. And while public readonly properties will be a style of programming that not everyone likes, it's clear from the vote on the readonly RFC, as well as the community feedback, that it's a feature wanted by many. > > That brings me to interfaces: currently we're only allowed to define methods on interfaces; historically this makes sense, since interfaces are meant to define behaviour, and not the implementation. Most OO language define behaviour using methods, and state using properties, which in turn are used to define the implementation. > > But now, readonly properties are added. > > Suddenly, class properties aren't just used for state anymore, they are also used to expose that state in an immutable way to the outside, where we'd use public getters (behaviour) and private properties (state) in the past, we can now combine them as public readonly properties. Wouldn't that imply that there are at least some cases where interface properties could also make sense? > > A simple example: > > Imagine we've got 10 different classes that share some behaviour: they are identifiable by a UUID. Next, imagine we've got a function that can specifically work with all classes that have a UUID. Proper OO teaches us to write an interface for this behaviour `Identifiable` or `HasUuid` or something alike. This interface would probably require its implementers to expose a `getUuid(): string` method. > > Without interfaces being able to define properties, we'll now have to implement a `getUuid()` method on all our 10 classes, nullifying the advantage we got from using `public readonly string $uuid` in the first place. If, on the other hand, this functionality was supported, we could write our interface like so, and wouldn't have to worry about any more boilerplate code: > > ``` > interface HasUuid > { > public readonly string $uuid; > } > ``` > > With the addition of readonly properties, now seems like a good time to discuss changing these rules. I realise these questions touch the core ideas of OO, so I reckon some people might have another opinion and I'd like to hear your thoughts. > > To give you some more reading material, there is a precedent for interface properties in other languages: > > - TypeScript supports them [1] > - C# supports them, albeit using property accessors [2] > - Swift supports them via Protocols [3] > > Looking forward to hearing your thoughts. > > Kind regards > Brent > > [1] https://www.typescriptlang.org/docs/handbook/type-compatibility.html > [2] https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/interface-properties > [3] https://docs.swift.org/swift-book/LanguageGuide/Protocols.html Hello, I agree, properties in interfaces would be very useful. It would allow me to get rid of many traits I wrote until now. I can live without it, but having it would be great help in many use cases I'm confronted with on a daily basis. -- Regards,