changing some typehinting in comments

This commit is contained in:
Brian 2022-03-16 12:19:45 -06:00
parent a50d03fdb5
commit 961b012daa
Signed by: brian
GPG Key ID: DE1A5390A3B84CD8

View File

@ -16,19 +16,19 @@ protected \$keyType = 'string';
/** @var bool */ /** @var bool */
public \$incrementing = false; public \$incrementing = false;
/** @var array */ /** @var string[] */
protected \$fillable = []; protected \$fillable = [];
/** @var array */ /** @var string[] */
protected \$hidden = []; protected \$hidden = [];
/** @var array */ /** @var array */
protected \$casts = []; protected \$casts = [];
/** @var array */ /** @var string[] */
protected \$dates = []; protected \$dates = [];
/** @var array */ /** @var string[] */
protected \$appends = []; protected \$appends = [];
/** @var array */ /** @var array */