• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bvlion / AppTanServer / 20205654148

14 Dec 2025 09:04AM UTC coverage: 25.627%. First build
20205654148

push

github

bvlion
format

12 of 49 new or added lines in 18 files covered. (24.49%)

143 of 558 relevant lines covered (25.63%)

0.8 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Domain/ProcessingRequest/ProcessingRequest.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace App\Domain\ProcessingRequest;
6

7
use JsonSerializable;
8

9
class ProcessingRequest implements JsonSerializable
10
{
11
  public function __construct(
12
    private string $packageName,
13
    private string $appName,
14
    private ProcessingStatus $status,
15
    private ?\DateTime $updatedAt = null
16
  ) {
NEW
17
  }
×
18

19
  public function getPackageName(): string
20
  {
21
    return $this->packageName;
×
22
  }
23

24
  public function getAppName(): string
25
  {
26
    return $this->appName;
×
27
  }
28

29
  public function getStatus(): ProcessingStatus
30
  {
31
    return $this->status;
×
32
  }
33

34
  public function getUpdatedAt(): ?\DateTime
35
  {
36
    return $this->updatedAt;
×
37
  }
38

39
  public function jsonSerialize(): array
40
  {
41
    return [
×
42
      'packageName' => $this->packageName,
×
43
      'appName' => $this->appName,
×
44
      'status' => $this->status->value,
×
45
      'updatedAt' => $this->updatedAt?->format(DATE_ATOM),
×
46
    ];
×
47
  }
48
}
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