rfc:optional-interfaces

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
rfc:optional-interfaces [2025/02/09 20:57] – Extend based on feedback tontonsbrfc:optional-interfaces [2025/04/03 13:08] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== PHP RFC: Optional Interfaces ====== ====== PHP RFC: Optional Interfaces ======
-  * Version: 0.2+  * Version: 1.0
   * Date: 2024-12-28   * Date: 2024-12-28
   * Author: Juris Evertovskis, juris@glaive.pro   * Author: Juris Evertovskis, juris@glaive.pro
-  * Status: Under Discussion+  * Status: Declined
   * First Published at: http://wiki.php.net/rfc/optional-interfaces   * First Published at: http://wiki.php.net/rfc/optional-interfaces
  
Line 122: Line 122:
 // Fatal error: TestClass::other() has #[\Override] attribute, but no matching parent method exists in ... // Fatal error: TestClass::other() has #[\Override] attribute, but no matching parent method exists in ...
 </PHP> </PHP>
 +
 +By using ''#[\Override]'' while only specifying optional interfaces you are enforcing that at least one of those interfaces must be present.
 +
 +<PHP>
 +class Signable implements ?NewLib\SignableInterface, ?OldVersion_SignableInterface
 +{
 +    #[\Override]
 +    public function getDoc(): string
 +    {
 +        return $this->doc;
 +    }
 +}
 +</PHP>
 +
  
 ==== Type checks ==== ==== Type checks ====
Line 248: Line 262:
 Yes or no vote.  2/3 required to pass. Yes or no vote.  2/3 required to pass.
  
-<doodle title="Add the optional interfaces feature?" auth="tontonsb" voteType="single" closed="true">+Voting started on 2025-03-14 and will close on 2025-03-29 00:00:00 UTC. 
 + 
 +<doodle title="Add the optional interfaces feature?" auth="tontonsb" voteType="single" closed="true" closeon="2025-03-29T00:00:00Z">
    * Yes    * Yes
    * No    * No
rfc/optional-interfaces.1739134630.txt.gz · Last modified: 2025/04/03 13:08 (external edit)