Answers for "php 8 constructor"

PHP
3

php 8 constructor

class Point {
  public function __construct(
    public float $x = 0.0,
    public float $y = 0.0,
    public float $z = 0.0,
  ) {}
}
Posted by: Guest on February-17-2021
0

php 8 constructor promotion

public function __construct(
        public string $myProperty,
        public string $myOtherProperty,
    ) {}
Posted by: Guest on November-26-2020

Browse Popular Code Answers by Language