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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details of a field. */
8
final readonly class Field extends Dto
9
{
10
    public function __construct(
×
11
        /** The ID of the field. */
12
        public string $id,
13

14
        /** The name of the field. */
15
        public string $name,
16

17
        public JsonTypeBean $schema,
18

19
        /** Number of contexts where the field is used. */
20
        public ?int $contextsCount = null,
21

22
        /** The description of the field. */
23
        public ?string $description = null,
24

25
        /** Whether the field is locked. */
26
        public ?bool $isLocked = null,
27

28
        /** Whether the field is shown on screen or not. */
29
        public ?bool $isUnscreenable = null,
30

31
        /** The key of the field. */
32
        public ?string $key = null,
33

34
        public ?FieldLastUsed $lastUsed = null,
35

36
        /** Number of projects where the field is used. */
37
        public ?int $projectsCount = null,
38

39
        /** Number of screens where the field is used. */
40
        public ?int $screensCount = null,
41

42
        /**
43
         * The searcher key of the field.
44
         * Returned for custom fields.
45
         */
46
        public ?string $searcherKey = null,
47

48
        /** The stable ID of the field. */
49
        public ?string $stableId = null,
50
    ) {
51
    }
×
52
}
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