Skip to content

Commit

Permalink
ide-helperに生成させるアノテーションは常にFQCNとし出力を一定にする
Browse files Browse the repository at this point in the history
  • Loading branch information
KentarouTakeda committed Dec 10, 2023
1 parent 1c27e2a commit 49509a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
* @method static \Database\Factories\UserFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User query()
* @mixin \Eloquent
*/
class User extends Authenticatable
Expand Down
2 changes: 1 addition & 1 deletion config/ide-helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@
| or there is an import (use className) of a given class
|
*/
'force_fqn' => false,
'force_fqn' => true,

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 49509a1

Please sign in to comment.