Skip to content

Commit

Permalink
Merge branch '5.7' of github.com:laravel/framework into 5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Sep 6, 2018
2 parents 055fe52 + b8d3665 commit 814334c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Auth/Console/stubs/make/views/auth/verify.stub
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">Verify Your Email Address</div>
<div class="card-header">{{ __('Verify Your Email Address') }}</div>

<div class="card-body">
@if (session('resent'))
<div class="alert alert-success" role="alert">
A fresh verification link has been sent to your email address.
{{ __('A fresh verification link has been sent to your email address.') }}
</div>
@endif

Before proceeding, please check your email for a verification link.
If you did not receive the email, <a href="{{ route('verification.resend') }}">click here to request another</a>.
{{ __('Before proceeding, please check your email for a verification link.') }}
{{ __('If you did not receive the email') }}, <a href="{{ route('verification.resend') }}">{{ __('click here to request another') }}</a>.
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Contracts/Auth/MustVerifyEmail.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function hasVerifiedEmail();
/**
* Mark the given user's email as verified.
*
* @return void
* @return bool
*/
public function markEmailAsVerified();

Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Mail/Transport/MailgunTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class MailgunTransport extends Transport
* @param \GuzzleHttp\ClientInterface $client
* @param string $key
* @param string $domain
* @param string|null $endpoint
* @return void
*/
public function __construct(ClientInterface $client, $key, $domain, $endpoint = null)
Expand Down
2 changes: 2 additions & 0 deletions src/Illuminate/Routing/Console/ControllerMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ protected function buildModelReplacements(array $replace)
*
* @param string $model
* @return string
*
* @throws \InvalidArgumentException
*/
protected function parseModel($model)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Illuminate\Database\Capsule\Manager as DB;
use Illuminate\Database\Eloquent\Model as Eloquent;

class DatabaseEloquentCastsDatabaseString extends TestCase
class DatabaseEloquentCastsDatabaseStringTest extends TestCase
{
public function setUp()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Database\Capsule\Manager as DB;
use Illuminate\Database\Eloquent\Model as Eloquent;

class DatabaseEloquentTimestamps extends TestCase
class DatabaseEloquentTimestampsTest extends TestCase
{
public function setUp()
{
Expand Down

0 comments on commit 814334c

Please sign in to comment.