IDE Helper added

This commit is contained in:
Jonny Barnes 2020-02-22 11:06:43 +00:00
parent 7fd04ce100
commit 3f1bca4168
15 changed files with 21231 additions and 22 deletions

View file

@ -9,6 +9,28 @@ use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Arr;
use Mf2;
/**
* App\Models\Like
*
* @property int $id
* @property string $url
* @property string|null $author_name
* @property string|null $author_url
* @property string|null $content
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like whereAuthorName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like whereAuthorUrl($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like whereContent($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Like whereUrl($value)
* @mixin \Eloquent
*/
class Like extends Model
{
use FilterHtml;
@ -28,7 +50,7 @@ class Like extends Model
/**
* Normalize the URL of the author of the like.
*
* @param string $value The authors url
* @param string|null $value The authors url
*/
public function setAuthorUrlAttribute(?string $value)
{
@ -38,7 +60,7 @@ class Like extends Model
/**
* If the content contains HTML, filter it.
*
* @param string $value The content of the like
* @param string|null $value The content of the like
* @return string|null
*/
public function getContentAttribute(?string $value): ?string