• 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/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
{
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