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

ericfortmeyer / activity-log / 20521974594

26 Dec 2025 11:53AM UTC coverage: 43.123% (-6.0%) from 49.13%
20521974594

push

github

web-flow
feat: add webhook for deployments (#63)

Signed-off-by: Eric Fortmeyer <e.fortmeyer01@gmail.com>

11 of 128 new or added lines in 13 files covered. (8.59%)

1 existing line in 1 file now uncovered.

348 of 807 relevant lines covered (43.12%)

1.33 hits per line

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

0.0
/src/AppReleaseEvent.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace EricFortmeyer\ActivityLog;
6

7
use Phpolar\Model\AbstractModel;
8

9
final class AppReleaseEvent extends AbstractModel
10
{
11
    public readonly AppReleaseAction $action;
12
    public readonly AppRelease $release;
13

14
    public function __construct(null|array|object $data = [])
15
    {
NEW
16
        $this->action = is_object($data) === true && property_exists($data, "action") === true
×
NEW
17
            ? AppReleaseAction::from($data->action)
×
NEW
18
            : AppReleaseAction::Unknown;
×
19

NEW
20
        $this->release = new AppRelease(
×
NEW
21
            is_object($data) === true && property_exists($data, "release") === true
×
NEW
22
                ? $data->release
×
NEW
23
                : []
×
NEW
24
        );
×
25
    }
26
}
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