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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details of a status. */
8
final readonly class JiraWorkflowStatus extends Dto
9
{
10
    public function __construct(
×
11
        /** The description of the status. */
12
        public ?string $description = null,
13

14
        /** The ID of the status. */
15
        public ?string $id = null,
16

17
        /** The name of the status. */
18
        public ?string $name = null,
19

20
        public ?WorkflowScope $scope = null,
21

22
        /**
23
         * The category of the status.
24
         * 
25
         * @var 'TODO'|'IN_PROGRESS'|'DONE'|null
26
         */
27
        public ?string $statusCategory = null,
28

29
        /** The reference of the status. */
30
        public ?string $statusReference = null,
31

32
        /**
33
         * Deprecated.
34
         * See the "deprecation notice" for details
35
         * 
36
         * The `statuses.usages` expand is an optional parameter that can be used when reading and updating statuses in Jira.
37
         * It provides additional information about the projects and issue types associated with the requested statuses.
38
         * 
39
         * @link https://developer.atlassian.com/cloud/jira/platform/changelog/#CHANGE-2298
40
         * 
41
         * @var ?list<ProjectIssueTypes>
42
         */
43
        public ?array $usages = null,
44
    ) {
45
    }
×
46
}
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