Code Coverage
 
Lines
Branches
Paths
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
4 / 4
CRAP
100.00% covered (success)
100.00%
1 / 1
NotificationDispatchResult
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
4 / 4
4
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getSender
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getStatus
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getMessage
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3namespace App\Service\Notification\Dispatcher;
4
5use App\Enum\NotificationLogStatus;
6
7/**
8 * @author Wilhelm Zwertvaegher
9 */
10readonly class NotificationDispatchResult
11{
12    public function __construct(
13        private string $sender,
14        private NotificationLogStatus $status,
15        private string $message,
16    ) {
17    }
18
19    public function getSender(): string
20    {
21        return $this->sender;
22    }
23
24    public function getStatus(): NotificationLogStatus
25    {
26        return $this->status;
27    }
28
29    public function getMessage(): string
30    {
31        return $this->message;
32    }
33}

Paths

Below are the source code lines that represent each code path as identified by Xdebug. Please note a path is not necessarily coterminous with a line, a line may contain multiple paths and therefore show up more than once. Please also be aware that some paths may include implicit rather than explicit branches, e.g. an if statement always has an else as part of its logical flow even if you didn't write one.

NotificationDispatchResult->__construct
12    public function __construct(
13        private string $sender,
14        private NotificationLogStatus $status,
15        private string $message,
16    ) {
17    }
NotificationDispatchResult->getMessage
31        return $this->message;
32    }
NotificationDispatchResult->getSender
21        return $this->sender;
22    }
NotificationDispatchResult->getStatus
26        return $this->status;
27    }
{main}
3namespace App\Service\Notification\Dispatcher;
4
5use App\Enum\NotificationLogStatus;
6
7/**
8 * @author Wilhelm Zwertvaegher
9 */
10readonly class NotificationDispatchResult
11{
12    public function __construct(
13        private string $sender,
14        private NotificationLogStatus $status,
15        private string $message,
16    ) {
17    }
18
19    public function getSender(): string
20    {
21        return $this->sender;
22    }
23
24    public function getStatus(): NotificationLogStatus
25    {
26        return $this->status;
27    }
28
29    public function getMessage(): string
30    {
31        return $this->message;
32    }