diff --git a/app/Models/Meta.php b/app/Models/Meta.php index b7f242837a92..6c391d200ee2 100644 --- a/app/Models/Meta.php +++ b/app/Models/Meta.php @@ -68,13 +68,13 @@ class Meta extends Model */ protected $table = 'meta'; - /** - * Get all of the owning meta models. - * - * @return \Illuminate\Database\Eloquent\Relations\MorphTo - */ - public function meta() - { - return $this->morphTo(); - } + /** + * Get all of the owning meta models. + * + * @return \Illuminate\Database\Eloquent\Relations\MorphTo + */ + public function meta() + { + return $this->morphTo(); + } }