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

3
namespace Jira\Client\Schema;
4

5
use DateTimeImmutable;
6
use Jira\Client\Dto;
7

8
/** Details about the Jira instance. */
9
final readonly class ServerInformation extends Dto
10
{
11
    public function __construct(
×
12
        /** The base URL of the Jira instance. */
13
        public ?string $baseUrl = null,
14

15
        /** The timestamp when the Jira version was built. */
16
        public ?DateTimeImmutable $buildDate = null,
17

18
        /** The build number of the Jira version. */
19
        public ?int $buildNumber = null,
20

21
        /**
22
         * The type of server deployment.
23
         * This is always returned as *Cloud*.
24
         */
25
        public ?string $deploymentType = null,
26

27
        /** The display URL of the Jira instance. */
28
        public ?string $displayUrl = null,
29

30
        /** The display URL of Confluence. */
31
        public ?string $displayUrlConfluence = null,
32

33
        /** The display URL of the Servicedesk Help Center. */
34
        public ?string $displayUrlServicedeskHelpCenter = null,
35

36
        /**
37
         * Jira instance health check results.
38
         * Deprecated and no longer returned.
39
         * 
40
         * @var ?list<HealthCheckResult>
41
         */
42
        public ?array $healthChecks = null,
43

44
        /** The unique identifier of the Jira version. */
45
        public ?string $scmInfo = null,
46

47
        /** The time in Jira when this request was responded to. */
48
        public ?DateTimeImmutable $serverTime = null,
49

50
        /**
51
         * The default timezone of the Jira server.
52
         * In a format known as Olson Time Zones, IANA Time Zones or TZ Database Time Zones.
53
         */
54
        public ?string $serverTimeZone = null,
55

56
        /** The name of the Jira instance. */
57
        public ?string $serverTitle = null,
58

59
        /** The version of Jira. */
60
        public ?string $version = null,
61

62
        /**
63
         * The major, minor, and revision version numbers of the Jira version.
64
         * 
65
         * @var ?list<int>
66
         */
67
        public ?array $versionNumbers = null,
68
    ) {
69
    }
×
70
}
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