Skip to content

Commit

Permalink
update meta files
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienTant committed Feb 25, 2020
1 parent ed2d9d3 commit 195def7
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/.phpstorm.meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/**
* PhpStorm Meta file, to provide autocomplete information for PhpStorm
* Generated on 2020-02-22 16:13:01.
* Generated on 2020-02-25 13:27:40.
*
* @author Barry vd. Heuvel <[email protected]>
* @see https://github.com/barryvdh/laravel-ide-helper
Expand Down
2 changes: 1 addition & 1 deletion src/_ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/**
* A helper file for Laravel 5, to provide autocomplete information to your IDE
* Generated for Laravel 6.16.0 on 2020-02-22 16:13:01.
* Generated for Laravel 6.16.0 on 2020-02-25 13:27:40.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down
108 changes: 105 additions & 3 deletions src/_ide_helper_models.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,25 @@
/**
* LaravelFrance\OAuth
*
* @property int $id
* @property int $user_id
* @property string $provider
* @property string $uid
* @property \Illuminate\Support\Carbon $created_at
* @property \Illuminate\Support\Carbon $updated_at
* @property-read \LaravelFrance\User $user
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth github()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth google()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth query()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth twitter()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth whereProvider($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth whereUid($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\OAuth whereUserId($value)
*/
class OAuth extends \Eloquent {}
}
Expand All @@ -29,6 +41,15 @@ class OAuth extends \Eloquent {}
/**
* LaravelFrance\User
*
* @property int $id
* @property string $username
* @property string $email
* @property array $groups
* @property array $forums_preferences
* @property int $nb_messages
* @property string $remember_token
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\LaravelFrance\ForumsMessage[] $forumsMessages
* @property-read int|null $forums_messages_count
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
Expand All @@ -40,6 +61,15 @@ class OAuth extends \Eloquent {}
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User query()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User whereForumsPreferences($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User whereGroups($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User whereNbMessages($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\User whereUsername($value)
*/
class User extends \Eloquent {}
}
Expand All @@ -48,9 +78,27 @@ class User extends \Eloquent {}
/**
* LaravelFrance\ForumsCategory
*
* @property int $id
* @property int $order
* @property string $name
* @property string $slug
* @property string $background_color
* @property string $font_color
* @property string|null $description
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory query()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory whereBackgroundColor($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory whereFontColor($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory whereOrder($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory whereSlug($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsCategory whereUpdatedAt($value)
*/
class ForumsCategory extends \Eloquent {}
}
Expand All @@ -59,18 +107,42 @@ class ForumsCategory extends \Eloquent {}
/**
* LaravelFrance\ForumsTopic
*
* @property int $id
* @property int $forums_category_id
* @property int $user_id
* @property int $sticky
* @property string $title
* @property string $slug
* @property int $solved
* @property int|null $solved_by
* @property int|null $last_message_id
* @property int $nb_messages
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \LaravelFrance\ForumsMessage $firstMessage
* @property-read \LaravelFrance\ForumsCategory $forumsCategory
* @property-read \Illuminate\Database\Eloquent\Collection|\LaravelFrance\ForumsMessage[] $forumsMessages
* @property-read int|null $forums_messages_count
* @property-read \LaravelFrance\ForumsMessage $lastMessage
* @property-read \LaravelFrance\ForumsMessage $solvedBy
* @property-read \LaravelFrance\ForumsMessage|null $lastMessage
* @property-read \LaravelFrance\ForumsMessage|null $solvedBy
* @property-read \LaravelFrance\User $user
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic findSimilarSlugs($attribute, $config, $slug)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic forListing()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic query()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereForumsCategoryId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereLastMessageId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereNbMessages($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereSlug($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereSolved($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereSolvedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereSticky($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsTopic whereUserId($value)
*/
class ForumsTopic extends \Eloquent {}
}
Expand All @@ -79,11 +151,25 @@ class ForumsTopic extends \Eloquent {}
/**
* LaravelFrance\ForumsMessage
*
* @property int $id
* @property int $forums_topic_id
* @property int $user_id
* @property string $markdown
* @property int $solve_topic
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \LaravelFrance\ForumsTopic $forumsTopic
* @property-read \LaravelFrance\User $user
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage query()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage whereForumsTopicId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage whereMarkdown($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage whereSolveTopic($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsMessage whereUserId($value)
*/
class ForumsMessage extends \Eloquent {}
}
Expand All @@ -92,14 +178,30 @@ class ForumsMessage extends \Eloquent {}
/**
* LaravelFrance\ForumsWatch
*
* @property-read \LaravelFrance\ForumsMessage $firstUnreadMessage
* @property int $id
* @property int $forums_topic_id
* @property int $user_id
* @property int $is_up_to_date
* @property \Illuminate\Support\Carbon $created_at
* @property \Illuminate\Support\Carbon $updated_at
* @property int $still_watching
* @property int|null $first_unread_message_id
* @property-read \LaravelFrance\ForumsMessage|null $firstUnreadMessage
* @property-read \LaravelFrance\ForumsTopic $forumsTopic
* @property-read \LaravelFrance\User $user
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch active()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch mailable()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch query()
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch whereFirstUnreadMessageId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch whereForumsTopicId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch whereIsUpToDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch whereStillWatching($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\LaravelFrance\ForumsWatch whereUserId($value)
*/
class ForumsWatch extends \Eloquent {}
}
Expand Down

0 comments on commit 195def7

Please sign in to comment.