rfc:nullable_typehints
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
rfc:nullable_typehints [2014/10/15 16:20] – levim | rfc:nullable_typehints [2017/09/22 13:28] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== PHP RFC: Declaring Nullable Types ====== | + | This RFC has moved to [[https:// |
- | * Version: 0.1 | + | |
- | * Date: 2014-04-10 | + | |
- | * Author: Levi Morrison < | + | |
- | * Status: Draft | + | |
- | * First Published at: https:// | + | |
- | + | ||
- | ===== Introduction ===== | + | |
- | This RFC proposes new syntax to allow type declarations to also accept < | + | |
- | + | ||
- | Consider the function: | + | |
- | + | ||
- | < | + | |
- | function foo(DateTime $time, $a) {} | + | |
- | </ | + | |
- | + | ||
- | In this situation you are not allowed to pass < | + | |
- | + | ||
- | ===== Proposal ===== | + | |
- | This proposal adds a marker ''?'' | + | |
- | + | ||
- | The ''?'' | + | |
- | < | + | |
- | function f(?callable $p, $a) {} // valid | + | |
- | </ | + | |
- | + | ||
- | Note that nullable parameters are required; you cannot omit the parameter like you can with a default parameter. | + | |
- | + | ||
- | ==== Position of ? ==== | + | |
- | The ''?'' | + | |
- | + | ||
- | ==== Inheritance in Parameters ==== | + | |
- | The ''?'' | + | |
- | + | ||
- | < | + | |
- | // Valid use: loosening the nullable marker in a parameter: | + | |
- | interface Fooable { | + | |
- | function foo(Fooable $f); | + | |
- | } | + | |
- | interface LooseFoo extends Fooable { | + | |
- | function foo(? | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | < | + | |
- | // Invalid use: tightening the nullable marker in a parameter: | + | |
- | interface Fooable { | + | |
- | function foo(? | + | |
- | } | + | |
- | interface StrictFoo extends Fooable { | + | |
- | function foo(Fooable $f); | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | ==== Default Parameters and Nullable Types are not interchangeable === | + | |
- | A default parameter and a nullable type are distinct and separate; you cannot use a default parameter where a nullable type existed in a parent; you cannot use a nullable type where a default parameter existed in a parent. | + | |
- | + | ||
- | ==== Return Types ==== | + | |
- | If the [[rfc: | + | |
- | + | ||
- | Here's an example of a binary tree that uses the nullable marker for both parameter and return types: | + | |
- | + | ||
- | < | + | |
- | // Possible usage of ? modifier for both parameters and return types | + | |
- | class BinaryTree { | + | |
- | public $value; | + | |
- | private $right; | + | |
- | private $left; | + | |
- | + | ||
- | function right(): ?BinaryTree { | + | |
- | return $this-> | + | |
- | } | + | |
- | function left(): ?BinaryTree { | + | |
- | return $this-> | + | |
- | } | + | |
- | + | ||
- | function setRight(? | + | |
- | $this-> | + | |
- | } | + | |
- | function setLeft(? | + | |
- | $this-> | + | |
- | } | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | It does not make sense to call '' | + | |
- | + | ||
- | === Inheritance in Return Types === | + | |
- | + | ||
- | The nullable marker in return types behaves differently during inheritance than a parameter type does. In a return type, the null marker can be removed by a subclass, but it cannot be added: | + | |
- | < | + | |
- | interface Fooable { | + | |
- | function foo(): ?Fooable; | + | |
- | } | + | |
- | interface StrictFooable extends Fooable { | + | |
- | function foo(): Fooable; // valid | + | |
- | } | + | |
- | </ | + | |
- | < | + | |
- | interface Fooable { | + | |
- | function foo(): Fooable; | + | |
- | } | + | |
- | interface LooseFooable extends Fooable { | + | |
- | function foo(): ?Fooable; // invalid | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | ==== Differences from Default Parameters ==== | + | |
- | The null marker does not have a default; it does not default to < | + | |
- | < | + | |
- | function f(?callable $p) {} | + | |
- | f(); // invalid; function f does not have a default | + | |
- | </ | + | |
- | + | ||
- | ===== Proposed PHP Version(s) ===== | + | |
- | This RFC targets PHP 7.0. | + | |
- | + | ||
- | ===== RFC Impact ===== | + | |
- | + | ||
- | ==== To Backward Incompatibility ==== | + | |
- | This RFC maintains backwards compatibility. This RFC does not deprecate the default value syntax. | + | |
- | + | ||
- | ==== To SAPIs ==== | + | |
- | This RFC has no impact to SAPIs. | + | |
- | + | ||
- | ==== To Existing Extensions ==== | + | |
- | TODO | + | |
- | + | ||
- | ==== New Constants ==== | + | |
- | This RFC does not propose any new constants or ini defaults. | + | |
- | + | ||
- | ===== Open Issues ===== | + | |
- | Make sure there are no open issues when the vote starts! | + | |
- | + | ||
- | ===== Unaffected PHP Functionality ===== | + | |
- | This RFC does not deprecate the default value syntax. While there is some overlap of features between it and this RFC, they serve different purposes. As such, the default value syntax will remain. | + | |
- | + | ||
- | ===== Future Scope ===== | + | |
- | TODO | + | |
- | + | ||
- | ===== Proposed Voting Choices ===== | + | |
- | This RFC modifies the PHP language syntax and therefore requires a two-third majority of votes. | + | |
- | + | ||
- | ===== Patches and Tests ===== | + | |
- | There is currently no patch. | + | |
- | + | ||
- | ===== Implementation ===== | + | |
- | TODO | + | |
- | + | ||
- | After the project is implemented, | + | |
- | - the version(s) it was merged to | + | |
- | - a link to the git commit(s) | + | |
- | - a link to the PHP manual entry for the feature | + | |
- | + | ||
- | ===== References ===== | + | |
- | TODO | + |
rfc/nullable_typehints.1413390001.txt.gz · Last modified: 2017/09/22 13:28 (external edit)