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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details of an issue priority. */
8
final readonly class UpdatePriorityDetails extends Dto
9
{
10
    public function __construct(
×
11
        /**
12
         * The ID for the avatar for the priority.
13
         * This parameter is nullable and both iconUrl and avatarId cannot be defined.
14
         */
15
        public ?int $avatarId = null,
16

17
        /** The description of the priority. */
18
        public ?string $description = null,
19

20
        /**
21
         * The URL of an icon for the priority.
22
         * Accepted protocols are HTTP and HTTPS.
23
         * Built in icons can also be used.
24
         * Both iconUrl and avatarId cannot be defined.
25
         * 
26
         * @var '/images/icons/priorities/blocker.png'|'/images/icons/priorities/critical.png'|'/images/icons/priorities/high.png'|'/images/icons/priorities/highest.png'|'/images/icons/priorities/low.png'|'/images/icons/priorities/lowest.png'|'/images/icons/priorities/major.png'|'/images/icons/priorities/medium.png'|'/images/icons/priorities/minor.png'|'/images/icons/priorities/trivial.png'|'/images/icons/priorities/blocker_new.png'|'/images/icons/priorities/critical_new.png'|'/images/icons/priorities/high_new.png'|'/images/icons/priorities/highest_new.png'|'/images/icons/priorities/low_new.png'|'/images/icons/priorities/lowest_new.png'|'/images/icons/priorities/major_new.png'|'/images/icons/priorities/medium_new.png'|'/images/icons/priorities/minor_new.png'|'/images/icons/priorities/trivial_new.png'|null
27
         */
28
        public ?string $iconUrl = null,
29

30
        /**
31
         * The name of the priority.
32
         * Must be unique.
33
         */
34
        public ?string $name = null,
35

36
        /** The status color of the priority in 3-digit or 6-digit hexadecimal format. */
37
        public ?string $statusColor = 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