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

ericfortmeyer / activity-log / 20361289242

19 Dec 2025 05:54AM UTC coverage: 56.627% (+4.3%) from 52.31%
20361289242

push

github

ericfortmeyer
test: remove code coverage attributes

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

329 of 581 relevant lines covered (56.63%)

1.68 hits per line

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

80.0
/src/Infrastructure/Auth/AuthConfigService.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace EricFortmeyer\ActivityLog\Infrastructure\Auth;
6

7
use EricFortmeyer\ActivityLog\Clients\SecretsClient;
8

9
class AuthConfigService
10
{
11
    public function __construct(
12
        private readonly SecretsClient $secretsClient,
13
    ) {}
3✔
14

15
    public function getClientSecret(): string
16
    {
17
        return $this->secretsClient->getValue("client-secret");
1✔
18
    }
19

20
    public function getCookieSecret(): string
21
    {
22
        return $this->secretsClient->getValue("cookie-secret");
1✔
23
    }
24

25
    public function getClientId(): string
26
    {
27
        return $this->secretsClient->getValue("client-id");
×
28
    }
29

30
    public function getDomain(): string
31
    {
32
        return $this->secretsClient->getValue("domain");
1✔
33
    }
34
}
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