Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump express from 4.17.1 to 4.18.2 #89

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/Console/Commands/MailnessInstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function handle()
/**
* Update the .env file from an array of $key => $value pairs.
*
* @param array $updatedValues
* @param array $updatedValues
* @return void
*/
protected function updateEnvironmentFile($updatedValues)
Expand Down Expand Up @@ -114,7 +114,7 @@ protected function createEnvFile()
/**
* Migrate the db with the new credentials.
*
* @param array $credentials
* @param array $credentials
* @return void
*/
protected function migrateDatabaseWithFreshCredentials($credentials)
Expand All @@ -134,7 +134,7 @@ protected function migrateDatabaseWithFreshCredentials($credentials)
* Prompt the user for optional input but hide the answer from the console.
*
* @param string $question
* @param bool $fallback
* @param bool $fallback
* @return string
*/
public function askHiddenWithDefault($question, $fallback = true)
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Controllers/ListsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function destroy(Lists $lists)
/**
* Subscribe form.
*
* @param \App\Models\Lists $lists
* @param \App\Models\Lists $lists
*/
public function subscribe(Lists $list)
{
Expand All @@ -143,7 +143,7 @@ public function subscribe(Lists $list)
* Save subscribe.
*
* @param \Illuminate\Http\Request $request
* @param \App\Models\Lists $lists
* @param \App\Models\Lists $lists
*/
public function subscribeStore(StoreSubscriptionRequest $request, Lists $list)
{
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Campaign.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Campaign extends Model
/**
* Checks if Current Campaign status is as Specified.
*
* @param string $status
* @param string $status
* @return bool
**/
public function isInStatus(string $status): bool
Expand Down
Loading