オブジェクトのclassにおけるコンストラクタの短縮記法。
頻出するから楽になる。
class Artist {
function __construct(protected string $name) {
}
function getName() {
return $this->name;
}
}
Go to list of users who liked
More than 1 year has passed since last update.
オブジェクトのclassにおけるコンストラクタの短縮記法。
頻出するから楽になる。
class Artist {
function __construct(protected string $name) {
}
function getName() {
return $this->name;
}
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked