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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details about the configuration of Jira. */
8
final readonly class Configuration extends Dto
9
{
10
    public function __construct(
×
11
        /** Whether the ability to add attachments to issues is enabled. */
12
        public ?bool $attachmentsEnabled = null,
13

14
        /** Whether the ability to link issues is enabled. */
15
        public ?bool $issueLinkingEnabled = null,
16

17
        /** Whether the ability to create subtasks for issues is enabled. */
18
        public ?bool $subTasksEnabled = null,
19

20
        /** The configuration of time tracking. */
21
        public ?TimeTrackingConfiguration $timeTrackingConfiguration = null,
22

23
        /**
24
         * Whether the ability to track time is enabled.
25
         * This property is deprecated.
26
         */
27
        public ?bool $timeTrackingEnabled = null,
28

29
        /**
30
         * Whether the ability to create unassigned issues is enabled.
31
         * See "Configuring Jira application options" for details.
32
         * 
33
         * @link https://confluence.atlassian.com/x/uYXKM
34
         */
35
        public ?bool $unassignedIssuesAllowed = null,
36

37
        /**
38
         * Whether the ability for users to vote on issues is enabled.
39
         * See "Configuring Jira application options" for details.
40
         * 
41
         * @link https://confluence.atlassian.com/x/uYXKM
42
         */
43
        public ?bool $votingEnabled = null,
44

45
        /**
46
         * Whether the ability for users to watch issues is enabled.
47
         * See "Configuring Jira application options" for details.
48
         * 
49
         * @link https://confluence.atlassian.com/x/uYXKM
50
         */
51
        public ?bool $watchingEnabled = null,
52
    ) {
53
    }
×
54
}
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