From 65d2f5f26d120c7e81aa4aba54711529d29c1478 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sun, 13 Aug 2023 15:07:23 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Models/Question.php | 4 ++-- src/SurveyServiceProvider.php | 2 +- src/Utilities/Summary.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Models/Question.php b/src/Models/Question.php index fd6d41c..e004f79 100644 --- a/src/Models/Question.php +++ b/src/Models/Question.php @@ -88,7 +88,7 @@ public function answers() /** * The question's validation rules. * - * @param $value + * @param $value * @return array|mixed */ public function getRulesAttribute($value) @@ -112,7 +112,7 @@ public function getKeyAttribute() * Scope a query to only include questions that * don't belong to any sections. * - * @param $query + * @param $query * @return mixed */ public function scopeWithoutSection($query) diff --git a/src/SurveyServiceProvider.php b/src/SurveyServiceProvider.php index 6a660b8..8f6df55 100644 --- a/src/SurveyServiceProvider.php +++ b/src/SurveyServiceProvider.php @@ -57,7 +57,7 @@ public function register() /** * Publish package migrations. * - * @param $migrations + * @param $migrations */ protected function publishMigrations($migrations) { diff --git a/src/Utilities/Summary.php b/src/Utilities/Summary.php index 219d160..2931d73 100644 --- a/src/Utilities/Summary.php +++ b/src/Utilities/Summary.php @@ -26,7 +26,7 @@ public function __construct(Question $question) /** * Find all answers with the same value. * - * @param $value + * @param $value * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function similarAnswers($value) @@ -37,7 +37,7 @@ public function similarAnswers($value) /** * Find the ratio of similar answers to all other answers. * - * @param $value + * @param $value * @return float|int */ public function similarAnswersRatio($value)