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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details about a task. */
8
final readonly class TaskProgressBeanObject extends Dto
9
{
10
    public function __construct(
×
11
        /** The execution time of the task, in milliseconds. */
12
        public int $elapsedRuntime,
13

14
        /** The ID of the task. */
15
        public string $id,
16

17
        /** A timestamp recording when the task progress was last updated. */
18
        public int $lastUpdate,
19

20
        /** The progress of the task, as a percentage complete. */
21
        public int $progress,
22

23
        /** The URL of the task. */
24
        public string $self,
25

26
        /**
27
         * The status of the task.
28
         * 
29
         * @var 'ENQUEUED'|'RUNNING'|'COMPLETE'|'FAILED'|'CANCEL_REQUESTED'|'CANCELLED'|'DEAD'
30
         */
31
        public string $status,
32

33
        /** A timestamp recording when the task was submitted. */
34
        public int $submitted,
35

36
        /** The ID of the user who submitted the task. */
37
        public int $submittedBy,
38

39
        /** The description of the task. */
40
        public ?string $description = null,
41

42
        /** A timestamp recording when the task was finished. */
43
        public ?int $finished = null,
44

45
        /** Information about the progress of the task. */
46
        public ?string $message = null,
47

48
        /** The result of the task execution. */
49
        public mixed $result = null,
50

51
        /** A timestamp recording when the task was started. */
52
        public ?int $started = null,
53
    ) {
54
    }
×
55
}
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