diff --git a/src/Http/View/Composers/SurveyComposer.php b/src/Http/View/Composers/SurveyComposer.php index 742605b..62a1c1c 100644 --- a/src/Http/View/Composers/SurveyComposer.php +++ b/src/Http/View/Composers/SurveyComposer.php @@ -12,7 +12,7 @@ class SurveyComposer /** * SurveyComposer constructor. * - * @param Guard $auth + * @param Guard $auth */ public function __construct(Guard $auth) { @@ -22,7 +22,7 @@ public function __construct(Guard $auth) /** * Compose the view with relevant values. * - * @param View $view + * @param View $view */ public function compose(View $view) { diff --git a/src/Models/Answer.php b/src/Models/Answer.php index 39447cb..bc28dae 100644 --- a/src/Models/Answer.php +++ b/src/Models/Answer.php @@ -12,7 +12,7 @@ class Answer extends Model implements AnswerContract /** * Answer constructor. * - * @param array $attributes + * @param array $attributes */ public function __construct(array $attributes = []) { diff --git a/src/Models/Entry.php b/src/Models/Entry.php index 4d4b103..9a6c4be 100644 --- a/src/Models/Entry.php +++ b/src/Models/Entry.php @@ -38,7 +38,7 @@ protected static function boot() /** * Entry constructor. * - * @param array $attributes + * @param array $attributes */ public function __construct(array $attributes = []) { @@ -82,7 +82,7 @@ public function participant() /** * Set the survey the entry belongs to. * - * @param Survey $survey + * @param Survey $survey * @return $this */ public function for(Survey $survey) @@ -95,7 +95,7 @@ public function for(Survey $survey) /** * Set the participant who the entry belongs to. * - * @param Model|null $model + * @param Model|null $model * @return $this */ public function by(Model $model = null) @@ -108,7 +108,7 @@ public function by(Model $model = null) /** * Create an entry from an array. * - * @param array $values + * @param array $values * @return $this */ public function fromArray(array $values) @@ -133,7 +133,7 @@ public function fromArray(array $values) /** * The answer for a given question. * - * @param Question $question + * @param Question $question * @return mixed|null */ public function answerFor(Question $question) diff --git a/src/Models/Question.php b/src/Models/Question.php index 9c5ee56..fd6d41c 100644 --- a/src/Models/Question.php +++ b/src/Models/Question.php @@ -44,7 +44,7 @@ protected static function boot() /** * Question constructor. * - * @param array $attributes + * @param array $attributes */ public function __construct(array $attributes = []) { diff --git a/src/Models/Section.php b/src/Models/Section.php index f25d06e..b1ef8c4 100644 --- a/src/Models/Section.php +++ b/src/Models/Section.php @@ -11,7 +11,7 @@ class Section extends Model implements SectionContract /** * Section constructor. * - * @param array $attributes + * @param array $attributes */ public function __construct(array $attributes = []) { diff --git a/src/Models/Survey.php b/src/Models/Survey.php index ef24224..a2d92a4 100644 --- a/src/Models/Survey.php +++ b/src/Models/Survey.php @@ -13,7 +13,7 @@ class Survey extends Model implements SurveyContract /** * Survey constructor. * - * @param array $attributes + * @param array $attributes */ public function __construct(array $attributes = []) { @@ -99,7 +99,7 @@ public function limitPerParticipant() /** * Survey entries by a participant. * - * @param Model $participant + * @param Model $participant * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function entriesFrom(Model $participant) @@ -110,7 +110,7 @@ public function entriesFrom(Model $participant) /** * Last survey entry by a participant. * - * @param Model $participant + * @param Model $participant * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function lastEntry(Model $participant = null) @@ -121,7 +121,7 @@ public function lastEntry(Model $participant = null) /** * Check if a participant is eligible to submit the survey. * - * @param Model|null $model + * @param Model|null $model * @return bool */ public function isEligible(Model $participant = null) diff --git a/src/SurveyServiceProvider.php b/src/SurveyServiceProvider.php index 54fd52b..014809d 100644 --- a/src/SurveyServiceProvider.php +++ b/src/SurveyServiceProvider.php @@ -12,7 +12,7 @@ class SurveyServiceProvider extends ServiceProvider /** * Boot the package. * - * @param ViewFactory $viewFactory + * @param ViewFactory $viewFactory */ public function boot(ViewFactory $viewFactory) { diff --git a/src/Utilities/Summary.php b/src/Utilities/Summary.php index 07a94ec..219d160 100644 --- a/src/Utilities/Summary.php +++ b/src/Utilities/Summary.php @@ -16,7 +16,7 @@ class Summary /** * Summary constructor. * - * @param Question $question + * @param Question $question */ public function __construct(Question $question) { diff --git a/tests/TestCase.php b/tests/TestCase.php index 7daee0a..a62cf69 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -59,7 +59,7 @@ protected function getPackageProviders($app) /** * Sign in a dummy user. * - * @param User|null $user + * @param User|null $user * @return User */ protected function signIn(User $user = null)