• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Build has been canceled!

conedevelopment / root / 15084010432

17 May 2025 09:46AM UTC coverage: 77.93% (+0.04%) from 77.891%
15084010432

Pull #240

github

web-flow
Merge f6dd44bc7 into abd60b533
Pull Request #240: Modernize back-end.yml

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/RootNotification.php
1
<?php
2

3
namespace Cone\Root\Notifications;
4

5
use Illuminate\Bus\Queueable;
6
use Illuminate\Contracts\Queue\ShouldQueue;
7
use Illuminate\Notifications\Notification;
8

9
abstract class RootNotification extends Notification implements ShouldQueue
10
{
11
    use Queueable;
12

13
    /**
14
     * Get the notification's delivery channels.
15
     *
16
     * @return array<int, string>
17
     */
18
    public function via(object $notifiable): array
×
19
    {
20
        return [RootChannel::class];
×
21
    }
22

23
    /**
24
     * Get the Root Message representation of the notification.
25
     */
26
    abstract public function toRoot(object $notifiable): RootMessage;
×
27
}
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

© 2026 Coveralls, Inc