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

3
declare(strict_types=1);
4

5
namespace EricFortmeyer\ActivityLog;
6

7
use Phpolar\Model\AbstractModel;
8
use Phpolar\Validators\Pattern;
9

10
final class AppRelease extends AbstractModel
11
{
12
    #[Pattern("/^\d+\.\d+\.\d+$/")]
13
    public string $tagName;
14

15
    public function __construct(null|array|object $data = [])
16
    {
NEW
17
        parent::__construct($data);
×
18

NEW
19
        if (is_object($data) === true && property_exists($data, "tag_name") === true) {
×
NEW
20
            $this->tagName = $data->tag_name;
×
21
        }
22
    }
23
}
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