mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
762 B
762 B
date | id | title |
---|---|---|
2020-11-10 | 19579c31-1dcc-4d11-b2f8-5f9180fa66d3 | PHP constructor property promotion |
Description
Introduced in PHP 8.0, constructor property promotions1 add new syntatctic sugar to create value & data transfer objects.
Syntax
class Money
{
public Currency $currency;
public int $amount;
public function __construct(
Currency $currency,
int $amount,
) {
$this->currency = $currency;
$this->amount = $amount;
}
}
can be replaced with
class Money
{
public function __construct(
public Currency $currency,
public int $amount,
) {}
}