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

3
namespace Jira\Client\Schema;
4

5
use DateTimeImmutable;
6
use Jira\Client\Dto;
7

8
/** Details about a workflow. */
9
final readonly class Workflow extends Dto
10
{
11
    public function __construct(
×
12
        /** The description of the workflow. */
13
        public string $description,
14

15
        public PublishedWorkflowId $id,
16

17
        /** The creation date of the workflow. */
18
        public ?DateTimeImmutable $created = null,
19

20
        /** Whether the workflow has a draft version. */
21
        public ?bool $hasDraftWorkflow = null,
22

23
        /** Whether this is the default workflow. */
24
        public ?bool $isDefault = null,
25

26
        public ?WorkflowOperations $operations = null,
27

28
        /**
29
         * The projects the workflow is assigned to, through workflow schemes.
30
         * 
31
         * @var ?list<ProjectDetails>
32
         */
33
        public ?array $projects = null,
34

35
        /**
36
         * The workflow schemes the workflow is assigned to.
37
         * 
38
         * @var ?list<WorkflowSchemeIdName>
39
         */
40
        public ?array $schemes = null,
41

42
        /**
43
         * The statuses of the workflow.
44
         * 
45
         * @var ?list<WorkflowStatus>
46
         */
47
        public ?array $statuses = null,
48

49
        /**
50
         * The transitions of the workflow.
51
         * 
52
         * @var ?list<Transition>
53
         */
54
        public ?array $transitions = null,
55

56
        /** The last edited date of the workflow. */
57
        public ?DateTimeImmutable $updated = null,
58
    ) {
59
    }
×
60
}
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