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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details about a field. */
8
final readonly class FieldDetails extends Dto
9
{
10
    public function __construct(
×
11
        /**
12
         * The names that can be used to reference the field in an advanced search.
13
         * For more information, see "Advanced searching - fields reference".
14
         * 
15
         * @link https://confluence.atlassian.com/x/gwORLQ
16
         * 
17
         * @var ?list<string>
18
         */
19
        public ?array $clauseNames = null,
20

21
        /** Whether the field is a custom field. */
22
        public ?bool $custom = null,
23

24
        /** The ID of the field. */
25
        public ?string $id = null,
26

27
        /** The key of the field. */
28
        public ?string $key = null,
29

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

33
        /** Whether the field can be used as a column on the issue navigator. */
34
        public ?bool $navigable = null,
35

36
        /** Whether the content of the field can be used to order lists. */
37
        public ?bool $orderable = null,
38

39
        /** The data schema for the field. */
40
        public ?JsonTypeBean $schema = null,
41

42
        /** The scope of the field. */
43
        public ?Scope $scope = null,
44

45
        /** Whether the content of the field can be searched. */
46
        public ?bool $searchable = null,
47
    ) {
48
    }
×
49
}
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