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

tylernathanreed / jira-client-php / 13900943155

17 Mar 2025 01:41PM UTC coverage: 71.493% (-3.8%) from 75.271%
13900943155

push

github

tylernathanreed
~ Fixed unknown list<string> type

12 of 12 new or added lines in 1 file covered. (100.0%)

313 existing lines in 133 files now uncovered.

4908 of 6865 relevant lines covered (71.49%)

9.06 hits per line

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

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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details of a workflow. */
8
final readonly class JiraWorkflow extends Dto
9
{
UNCOV
10
    public function __construct(
×
11
        /** The creation date of the workflow. */
12
        public ?string $created = null,
13

14
        /** The description of the workflow. */
15
        public ?string $description = null,
16

17
        /** The ID of the workflow. */
18
        public ?string $id = null,
19

20
        /** Indicates if the workflow can be edited. */
21
        public ?bool $isEditable = null,
22

23
        /** The name of the workflow. */
24
        public ?string $name = null,
25

26
        public ?WorkflowScope $scope = null,
27

28
        public ?WorkflowLayout $startPointLayout = null,
29

30
        /**
31
         * The statuses referenced in this workflow.
32
         * 
33
         * @var ?list<WorkflowReferenceStatus>
34
         */
35
        public ?array $statuses = null,
36

37
        /** If there is a current "asynchronous task" operation for this workflow. */
38
        public ?string $taskId = null,
39

40
        /**
41
         * The transitions of the workflow.
42
         * Note that a transition can have either the deprecated `to`/`from` fields or the `toStatusReference`/`links` fields, but never both nor a combination.
43
         * 
44
         * @var ?list<WorkflowTransitions>
45
         */
46
        public ?array $transitions = null,
47

48
        /** The last edited date of the workflow. */
49
        public ?string $updated = null,
50

51
        /**
52
         * Deprecated.
53
         * See the "deprecation notice" for details
54
         * 
55
         * Use the optional `workflows.usages` expand to get additional information about the projects and issue types associated with the requested workflows.
56
         * 
57
         * @link https://developer.atlassian.com/cloud/jira/platform/changelog/#CHANGE-2298
58
         * 
59
         * @var ?list<ProjectIssueTypes>
60
         */
61
        public ?array $usages = null,
62

63
        public ?DocumentVersion $version = null,
64
    ) {
UNCOV
65
    }
×
66
}
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