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

tylernathanreed / jira-client-php / 13634794100

03 Mar 2025 03:19PM UTC coverage: 2.067% (-0.1%) from 2.21%
13634794100

push

github

web-flow
~ Try coveralls action

140 of 6773 relevant lines covered (2.07%)

0.03 hits per line

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

0.0
/src/Schema/NotificationRecipients.php
1
<?php
2

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details of the users and groups to receive the notification. */
8
final readonly class NotificationRecipients extends Dto
9
{
10
    public function __construct(
×
11
        /** Whether the notification should be sent to the issue's assignees. */
12
        public ?bool $assignee = null,
13

14
        /**
15
         * List of groupIds to receive the notification.
16
         * 
17
         * @var ?list<string>
18
         */
19
        public ?array $groupIds = null,
20

21
        /**
22
         * List of groups to receive the notification.
23
         * 
24
         * @var ?list<GroupName>
25
         */
26
        public ?array $groups = null,
27

28
        /** Whether the notification should be sent to the issue's reporter. */
29
        public ?bool $reporter = null,
30

31
        /**
32
         * List of users to receive the notification.
33
         * 
34
         * @var ?list<UserDetails>
35
         */
36
        public ?array $users = null,
37

38
        /** Whether the notification should be sent to the issue's voters. */
39
        public ?bool $voters = null,
40

41
        /** Whether the notification should be sent to the issue's watchers. */
42
        public ?bool $watchers = null,
43
    ) {
44
    }
×
45
}
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