• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

conedevelopment / root / 15084089635

17 May 2025 10:00AM UTC coverage: 77.93% (+0.04%) from 77.891%
15084089635

push

github

web-flow
Modernize back-end.yml (#240)

3291 of 4223 relevant lines covered (77.93%)

36.04 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Notifications/ResetPassword.php
1
<?php
2

3
namespace Cone\Root\Notifications;
4

5
use Illuminate\Auth\Notifications\ResetPassword as Notification;
6
use Illuminate\Bus\Queueable;
7
use Illuminate\Contracts\Queue\ShouldQueue;
8
use Illuminate\Support\Facades\URL;
9

10
class ResetPassword extends Notification implements ShouldQueue
11
{
12
    use Queueable;
13

14
    /**
15
     * Get the reset URL for the given notifiable.
16
     */
17
    protected function resetUrl(mixed $notifiable): string
×
18
    {
19
        return URL::route('root.auth.password.reset', [
×
20
            'token' => $this->token,
×
21
            'email' => $notifiable->getEmailForPasswordReset(),
×
22
        ]);
×
23
    }
24
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc