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

tylernathanreed / jira-client-php / 13900943155

17 Mar 2025 01:41PM UTC coverage: 71.493% (-3.8%) from 75.271%
13900943155

push

github

tylernathanreed
~ Fixed unknown list<string> type

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

313 existing lines in 133 files now uncovered.

4908 of 6865 relevant lines covered (71.49%)

9.06 hits per line

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

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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** A list of issue IDs and the value to update a custom field to. */
8
final readonly class CustomFieldValueUpdate extends Dto
9
{
UNCOV
10
    public function __construct(
×
11
        /**
12
         * The list of issue IDs.
13
         * 
14
         * @var list<int>
15
         */
16
        public array $issueIds,
17

18
        /**
19
         * The value for the custom field.
20
         * The value must be compatible with the "custom field type" as follows:
21
         * 
22
         *  - `string` the value must be a string
23
         *  - `number` the value must be a number
24
         *  - `datetime` the value must be a string that represents a date in the ISO format or the simplified extended ISO format.
25
         * For example, `"2023-01-18T12:00:00-03:00"` or `"2023-01-18T12:00:00.000Z"`.
26
         * However, the milliseconds part is ignored
27
         *  - `user` the value must be an object that contains the `accountId` field
28
         *  - `group` the value must be an object that contains the group `name` or `groupId` field.
29
         * Because group names can change, we recommend using `groupId`
30
         * 
31
         * A list of appropriate values must be provided if the field is of the `list` "collection type".
32
         * 
33
         * @link https://developer.atlassian.com/platform/forge/manifest-reference/modules/jira-custom-field/#data-types
34
         * @link https://developer.atlassian.com/platform/forge/manifest-reference/modules/jira-custom-field/#collection-types
35
         */
36
        public mixed $value,
37
    ) {
UNCOV
38
    }
×
39
}
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