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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details about the roles in a project. */
8
final readonly class ProjectRole extends Dto
9
{
10
    public function __construct(
×
11
        /**
12
         * The list of users who act in this role.
13
         * 
14
         * @var ?list<RoleActor>
15
         */
16
        public ?array $actors = null,
17

18
        /** Whether this role is the admin role for the project. */
19
        public ?bool $admin = null,
20

21
        /** Whether the calling user is part of this role. */
22
        public ?bool $currentUserRole = null,
23

24
        /** Whether this role is the default role for the project */
25
        public ?bool $default = null,
26

27
        /** The description of the project role. */
28
        public ?string $description = null,
29

30
        /** The ID of the project role. */
31
        public ?int $id = null,
32

33
        /** The name of the project role. */
34
        public ?string $name = null,
35

36
        /** Whether the roles are configurable for this project. */
37
        public ?bool $roleConfigurable = null,
38

39
        /**
40
         * The scope of the role.
41
         * Indicated for roles associated with "next-gen projects".
42
         * 
43
         * @link https://confluence.atlassian.com/x/loMyO
44
         */
45
        public ?Scope $scope = null,
46

47
        /** The URL the project role details. */
48
        public ?string $self = null,
49

50
        /** The translated name of the project role. */
51
        public ?string $translatedName = null,
52
    ) {
53
    }
×
54
}
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