Skip to content

Commit

Permalink
remove static return types (#41276)
Browse files Browse the repository at this point in the history
these methods only return the Builder
  • Loading branch information
browner12 committed Mar 1, 2022
1 parent aa2853e commit ecec6ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Database/Eloquent/SoftDeletes.php
Expand Up @@ -3,9 +3,9 @@
namespace Illuminate\Database\Eloquent;

/**
* @method static static|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder withTrashed(bool $withTrashed = true)
* @method static static|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder onlyTrashed()
* @method static static|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder withoutTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder withTrashed(bool $withTrashed = true)
* @method static \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder withoutTrashed()
*/
trait SoftDeletes
{
Expand Down

0 comments on commit ecec6ca

Please sign in to comment.