Skip to content

Commit

Permalink
fix: add missing phpdoc types for Eloquent properties (#52425)
Browse files Browse the repository at this point in the history
  • Loading branch information
taka-oyama authored Aug 8, 2024
1 parent 6ae8c9a commit e1a9c5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ trait HasAttributes
/**
* The storage format of the model's date columns.
*
* @var string
* @var string|null
*/
protected $dateFormat;

Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Eloquent/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ abstract class Model implements Arrayable, ArrayAccess, CanBeEscapedWhenCastToSt
/**
* The table associated with the model.
*
* @var string
* @var string|null
*/
protected $table;

Expand Down

0 comments on commit e1a9c5d

Please sign in to comment.