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

tylernathanreed / jira-client-php / 13857440588

14 Mar 2025 01:18PM UTC coverage: 70.825% (-0.06%) from 70.885%
13857440588

push

github

tylernathanreed
~ Fixed nested objects in test examples

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

524 existing lines in 407 files now uncovered.

4826 of 6814 relevant lines covered (70.82%)

8.59 hits per line

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

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

3
namespace Jira\Client\Schema;
4

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

8
final readonly class BulkOperationProgress extends Dto
9
{
UNCOV
10
    public function __construct(
×
11
        /** A timestamp of when the task was submitted. */
12
        public ?DateTimeImmutable $created = null,
13

14
        /**
15
         * Map of issue IDs for which the operation failed and that the user has permission to view, to their one or more reasons for failure.
16
         * These reasons are open-ended text descriptions of the error and are not selected from a predefined list of standard reasons.
17
         * 
18
         * @var array<string,list<string>>
19
         */
20
        public ?array $failedAccessibleIssues = null,
21

22
        /** The number of issues that are either invalid or issues that the user doesn't have permission to view, regardless of the success or failure of the operation. */
23
        public ?int $invalidOrInaccessibleIssueCount = null,
24

25
        /**
26
         * List of issue IDs for which the operation was successful and that the user has permission to view.
27
         * 
28
         * @var ?list<int>
29
         */
30
        public ?array $processedAccessibleIssues = null,
31

32
        /** Progress of the task as a percentage. */
33
        public ?int $progressPercent = null,
34

35
        /** A timestamp of when the task was started. */
36
        public ?DateTimeImmutable $started = null,
37

38
        /**
39
         * The status of the task.
40
         * 
41
         * @var 'ENQUEUED'|'RUNNING'|'COMPLETE'|'FAILED'|'CANCEL_REQUESTED'|'CANCELLED'|'DEAD'|null
42
         */
43
        public ?string $status = null,
44

45
        public ?User $submittedBy = null,
46

47
        /** The ID of the task. */
48
        public ?string $taskId = null,
49

50
        /** The number of issues that the bulk operation was attempted on. */
51
        public ?int $totalIssueCount = null,
52

53
        /** A timestamp of when the task progress was last updated. */
54
        public ?DateTimeImmutable $updated = null,
55
    ) {
56
    }
×
57
}
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