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