Skip to content

Commit 74e8cd7

Browse files
authored
Merge pull request laravel#2747 from sald19/5.3
fix example
2 parents 8a24406 + 987f091 commit 74e8cd7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ You may define your own authentication guards using the `extend` method on the `
342342

343343
use App\Services\Auth\JwtGuard;
344344
use Illuminate\Support\Facades\Auth;
345-
use Illuminate\Support\ServiceProvider;
345+
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
346346

347347
class AuthServiceProvider extends ServiceProvider
348348
{

notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,8 +535,8 @@ You may use the `from` and `to` methods to customize the sender and recipient. T
535535
{
536536
return (new SlackMessage)
537537
->from('Ghost', ':ghost:')
538-
->to('#other');
539-
->content('This will be sent to #other')
538+
->to('#other')
539+
->content('This will be sent to #other');
540540
}
541541

542542
<a name="routing-slack-notifications"></a>

0 commit comments

Comments
 (0)