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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Mapping of issue priorities for changes in priority schemes. */
8
final readonly class PriorityMapping extends Dto
9
{
UNCOV
10
    public function __construct(
×
11
        /**
12
         * The mapping of priorities for issues being migrated **into** this priority scheme.
13
         * Key is the old priority ID, value is the new priority ID (must exist in this priority scheme)
14
         * 
15
         * E.g.
16
         * The current priority scheme has priority ID `10001`.
17
         * Issues with priority ID `10000` are being migrated into this priority scheme will need mapping to new priorities.
18
         * The `in` mapping would be `{"10000": 10001}`.
19
         * 
20
         * @var array<string,integer>
21
         */
22
        public ?array $in = null,
23

24
        /**
25
         * The mapping of priorities for issues being migrated **out of** this priority scheme.
26
         * Key is the old priority ID (must exist in this priority scheme), value is the new priority ID (must exist in the default priority scheme).
27
         * Required for updating an existing priority scheme.
28
         * Not used when creating a new priority scheme
29
         * 
30
         * E.g.
31
         * The current priority scheme has priority ID `10001`.
32
         * Issues with priority ID `10001` are being migrated out of this priority scheme will need mapping to new priorities.
33
         * The `out` mapping would be `{"10001": 10000}`.
34
         * 
35
         * @var array<string,integer>
36
         */
37
        public ?array $out = null,
38
    ) {
39
    }
×
40
}
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