Remove redundant typing from DocBlocks

This commit is contained in:
Shift
2023-03-30 14:15:45 +00:00
parent afb0f41611
commit 71e1631df6
196 changed files with 0 additions and 855 deletions
-9
View File
@@ -267,17 +267,11 @@ class Category extends Model
*/
protected $guarded = [];
/**
* @return HasMany
*/
public function releases(): HasMany
{
return $this->hasMany(Release::class, 'categories_id');
}
/**
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(RootCategory::class, 'root_categories_id');
@@ -308,9 +302,6 @@ class Category extends Model
return $result;
}
/**
* @return string
*/
public static function getCategorySearch(array $cat = []): string
{
$categories = [];