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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details of a project feature. */
8
final readonly class ProjectFeature extends Dto
9
{
10
    public function __construct(
×
11
        /** The key of the feature. */
12
        public ?string $feature = null,
13

14
        /** URI for the image representing the feature. */
15
        public ?string $imageUri = null,
16

17
        /** Localized display description for the feature. */
18
        public ?string $localisedDescription = null,
19

20
        /** Localized display name for the feature. */
21
        public ?string $localisedName = null,
22

23
        /**
24
         * List of keys of the features required to enable the feature.
25
         * 
26
         * @var ?list<string>
27
         */
28
        public ?array $prerequisites = null,
29

30
        /** The ID of the project. */
31
        public ?int $projectId = null,
32

33
        /**
34
         * The state of the feature.
35
         * When updating the state of a feature, only ENABLED and DISABLED are supported.
36
         * Responses can contain all values
37
         * 
38
         * @var 'ENABLED'|'DISABLED'|'COMING_SOON'|null
39
         */
40
        public ?string $state = null,
41

42
        /** Whether the state of the feature can be updated. */
43
        public ?bool $toggleLocked = null,
44
    ) {
45
    }
×
46
}
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