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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Associated related work to a version */
8
final readonly class VersionRelatedWork extends Dto
9
{
10
    public function __construct(
×
11
        /** The category of the related work */
12
        public string $category,
13

14
        /**
15
         * The ID of the issue associated with the related work (if there is one).
16
         * Cannot be updated via the Rest API.
17
         */
18
        public ?int $issueId = null,
19

20
        /**
21
         * The id of the related work.
22
         * For the native release note related work item, this will be null, and Rest API does not support updating it.
23
         */
24
        public ?string $relatedWorkId = null,
25

26
        /** The title of the related work */
27
        public ?string $title = null,
28

29
        /**
30
         * The URL of the related work.
31
         * Will be null for the native release note related work item, but is otherwise required.
32
         */
33
        public ?string $url = null,
34
    ) {
35
    }
×
36
}
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