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

3
namespace Jira\Client\Schema;
4

5
use DateTimeImmutable;
6
use Jira\Client\Dto;
7

8
/** Jql function precomputation. */
9
final readonly class JqlFunctionPrecomputationBean extends Dto
10
{
UNCOV
11
    public function __construct(
×
12
        /**
13
         * The list of arguments function was invoked with.
14
         * 
15
         * @var ?list<string>
16
         */
17
        public ?array $arguments = null,
18

19
        /** The timestamp of the precomputation creation. */
20
        public ?DateTimeImmutable $created = null,
21

22
        /** The error message to be displayed to the user. */
23
        public ?string $error = null,
24

25
        /** The field the function was executed against. */
26
        public ?string $field = null,
27

28
        /** The function key. */
29
        public ?string $functionKey = null,
30

31
        /** The name of the function. */
32
        public ?string $functionName = null,
33

34
        /** The id of the precomputation. */
35
        public ?string $id = null,
36

37
        /** The operator in context of which function was executed. */
38
        public ?string $operator = null,
39

40
        /** The timestamp of the precomputation last update. */
41
        public ?DateTimeImmutable $updated = null,
42

43
        /** The timestamp of the precomputation last usage. */
44
        public ?DateTimeImmutable $used = null,
45

46
        /** The JQL fragment stored as the precomputation. */
47
        public ?string $value = null,
48
    ) {
UNCOV
49
    }
×
50
}
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